IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 14, 2008, 8:54:45 PM (18 years ago)
Author:
eugene
Message:

updates from HEAD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20080706/ippTools/share/stacktool_tosum.sql

    r16942 r18530  
    1 SELECT
     1SELECT DISTINCT
    22    stackRun.stack_id,
    33    stackRun.tess_id,
    44    stackRun.skycell_id,
    5     stackRun.workdir
     5    stackRun.workdir,
     6    rawExp.camera
    67FROM stackRun
     8JOIN stackInputSkyfile
     9    USING(stack_id)
     10JOIN warpSkyfile
     11    ON  stackInputSkyfile.warp_id = warpSkyfile.warp_id
     12    AND stackRun.skycell_id       = warpSkyfile.skycell_id
     13    AND stackRun.tess_id          = warpSkyfile.tess_id
     14JOIN warpRun
     15    ON warpRun.warp_id = warpSkyfile.warp_id
     16JOIN fakeRun
     17    USING(fake_id)
     18JOIN camRun
     19    USING(cam_id)
     20JOIN chipRun
     21    USING(chip_id)
     22JOIN rawExp
     23    USING(exp_id)
    724LEFT JOIN stackSumSkyfile
    825    USING(stack_id)
Note: See TracChangeset for help on using the changeset viewer.