source: trunk/Mars/hawc/processing/summary-callisto.sql@ 20031

Last change on this file since 20031 was 20031, checked in by tbretz, 4 years ago
Included telescope id and the create query to the raw data extraction.
File size: 330 bytes
Line 
1#!/usr/bin/env -S rootifysql
2SELECT
3 Telescope,
4 NIGHT,
5 RUNID,
6 (TSTARTI+TSTARTF) AS ObsStart,
7 RUNTYPE,
8 Imed,
9 Patch,
10 Amplitude,
11 Baseline
12FROM
13 `Callisto` Callisto
14LEFT JOIN
15 RawData USING(Telescope, NIGHT, RUNID)
16LEFT JOIN
17 AuxData USING(Telescope, NIGHT, RUNID)
18ORDER BY
19 Telesscope, NIGHT, RUNID
Note: See TracBrowser for help on using the repository browser.