Changeset 14227 for trunk/ippTools/share/camtool_find_chip_id.sql
- Timestamp:
- Jul 16, 2007, 11:56:49 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/share/camtool_find_chip_id.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/camtool_find_chip_id.sql
r14031 r14227 1 -- this query is used by both camtool -pendingexp & camtool -addprocessedexp it2 -- does a little more work then is necessary for -addprocessed but it seems3 -- "cleaner" to use the same query for both cases4 1 SELECT 5 2 * 6 3 FROM 7 4 (SELECT DISTINCT 8 chipRun.* 5 chipRun.*, 6 rawExp.camera, 7 rawExp.telescope, 8 rawExp.dateobs, 9 rawExp.exp_tag, 10 rawExp.exp_type, 11 rawExp.filelevel, 12 rawExp.filter, 13 rawExp.airmass, 14 rawExp.ra, 15 rawExp.decl, 16 rawExp.exp_time, 17 rawExp.sat_pixel_frac, 18 rawExp.bg, 19 rawExp.bg_stdev, 20 rawExp.bg_mean_stdev, 21 rawExp.alt, 22 rawExp.az, 23 rawExp.ccd_temp, 24 rawExp.posang, 25 rawExp.object, 26 rawExp.solang 9 27 FROM chipRun 28 JOIN rawExp 29 using(exp_id) 10 30 WHERE 11 31 chipRun.state = 'stop') as Foo
Note:
See TracChangeset
for help on using the changeset viewer.
