IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 5, 2007, 10:15:41 AM (19 years ago)
Author:
jhoblitt
Message:

merge backtrack branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/regtool_find_unprocessed_imfile.sql

    r12086 r14018  
    1 SELECT
    2     *
    3 FROM
    4     (SELECT newImfile.* FROM newImfile
    5         LEFT JOIN newExp USING(exp_tag)
    6         LEFT JOIN rawExp USING(exp_tag)
    7         WHERE newExp.exp_tag IS NOT NULL
     1SELECT DISTINCT * FROM
     2    (SELECT
     3        newImfile.*
     4    FROM newImfile
     5    JOIN newExp
     6        USING(exp_tag)
     7    LEFT JOIN rawExp
     8        USING(exp_tag)
     9    WHERE
     10        newExp.state = 'run'
    811        AND rawExp.exp_tag IS NULL) as Foo
Note: See TracChangeset for help on using the changeset viewer.