- Timestamp:
- May 3, 2011, 2:25:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20110406/ippTools/share/laptool_definerun.sql
r31407 r31428 1 SELECT exp_id, chip_id, false as private, true as active, false as pairwise 2 FROM rawExp 3 LEFT JOIN 4 (SELECT exp_id, chip_id 5 FROM lapExp 6 where private IS FALSE 7 AND data_state = 'full') AS old USING(exp_id) 1 SELECT want.exp_id, have.chip_id, false as private, true as active, false as pairwise 2 FROM 3 (SELECT exp_id FROM rawExp 8 4 WHERE rawExp.exp_type= 'OBJECT' AND 9 5 rawExp.dateobs >= '2009-04-01T00:00:00.000000' AND 10 6 -- Position restriction goes here. 7 @WHERE@ 8 ) AS want 9 LEFT JOIN 10 (SELECT * 11 FROM lapExp 12 where private IS FALSE 13 AND chip_id IS NOT NULL 14 AND active = TRUE ) AS have USING(exp_id) 15 16
Note:
See TracChangeset
for help on using the changeset viewer.
