Changeset 24244 for branches/cnb_branches/cnb_branch_20090301/ippTools/share/warptool_definebyquery.sql
- Timestamp:
- May 26, 2009, 1:59:32 PM (17 years ago)
- Location:
- branches/cnb_branches/cnb_branch_20090301
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
ippTools/share (modified) (1 prop)
-
ippTools/share/warptool_definebyquery.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/cnb_branches/cnb_branch_20090301
- Property svn:mergeinfo changed
-
branches/cnb_branches/cnb_branch_20090301/ippTools/share
- Property svn:ignore
-
old new 1 1 Makefile.in 2 2 Makefile 3 pxadmin_create_mirror_tables.sql
-
- Property svn:ignore
-
branches/cnb_branches/cnb_branch_20090301/ippTools/share/warptool_definebyquery.sql
r23594 r24244 1 SELECT 2 * 3 FROM 4 (SELECT DISTINCT 5 fakeRun.*, 6 chipRun.chip_id, 7 rawExp.camera, 8 rawExp.telescope, 9 rawExp.dateobs, 10 rawExp.exp_tag, 11 rawExp.exp_name, 12 rawExp.exp_type, 13 rawExp.filelevel, 14 rawExp.filter, 15 rawExp.airmass, 16 rawExp.ra, 17 rawExp.decl, 18 rawExp.exp_time, 19 rawExp.sat_pixel_frac, 20 rawExp.bg, 21 rawExp.bg_stdev, 22 rawExp.bg_mean_stdev, 23 rawExp.alt, 24 rawExp.az, 25 rawExp.ccd_temp, 26 rawExp.posang, 27 rawExp.object, 28 rawExp.sun_angle 29 FROM fakeRun 30 JOIN camRun 31 using(cam_id) 32 JOIN chipRun 33 using(chip_id) 34 JOIN rawExp 35 using(exp_id) 36 WHERE 37 fakeRun.state = 'full') as Foo 1 SELECT DISTINCT 2 fakeRun.*, 3 chipRun.chip_id, 4 rawExp.camera, 5 rawExp.telescope, 6 rawExp.dateobs, 7 rawExp.exp_id, 8 rawExp.exp_tag, 9 rawExp.exp_name, 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.sun_angle 27 FROM fakeRun 28 JOIN camRun USING(cam_id) 29 JOIN chipRun USING(chip_id) 30 JOIN rawExp USING(exp_id) 31 WHERE camRun.state = 'full' 32 AND chipRun.state = 'full'
Note:
See TracChangeset
for help on using the changeset viewer.
