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

Last change on this file since 20029 was 20026, checked in by tbretz, 4 years ago
A set of example files for working with the database.
File size: 272 bytes
Line 
1#!/usr/bin/env -S rootifysql
2SELECT
3 NIGHT,
4 (TSTARTI+TSTARTF) AS ObsStart,
5 RUNTYPE,
6 Imed,
7 Patch,
8 Amplitude,
9 Baseline
10FROM
11 `Callisto` Callisto
12LEFT JOIN
13 RawData USING(NIGHT, RUNID)
14LEFT JOIN
15 AuxData USING(NIGHT, RUNID)
16ORDER BY
17 NIGHT, RUNID
Note: See TracBrowser for help on using the repository browser.