IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 9, 2006, 3:37:23 PM (20 years ago)
Author:
jhoblitt
Message:

more SQL fiddling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/dettool.c

    r9429 r9440  
    146146    PS_ASSERT_PTR_NON_NULL(config, NULL);
    147147
    148      psString query = psStringCopy("SELECT rawDetrendExp.* FROM rawDetrendExp"
    149         " LEFT JOIN detInputExp ON rawDetrendExp.exp_tag = detInputExp.exp_tag"
    150         " WHERE detInputExp.exp_tag IS NULL");
     148     psString query = psStringCopy(
     149        "SELECT"
     150        "   rawDetrendExp.*"
     151        " FROM rawDetrendExp"
     152        " LEFT JOIN detInputExp"
     153        "   ON rawDetrendExp.exp_tag = detInputExp.exp_tag"
     154        " WHERE"
     155        "    detInputExp.exp_tag IS NULL"
     156    );
    151157
    152158    if (config->where) {
Note: See TracChangeset for help on using the changeset viewer.