source: trunk/Mars/hawc/processing/summary-star.sql@ 20026

Last change on this file since 20026 was 20026, checked in by tbretz, 4 years ago
A set of example files for working with the database.
File size: 207 bytes
Line 
1#!/usr/bin/env -S rootifysql
2SELECT
3 (TSTARTI+TSTARTF) AS ObsStart,
4 Star.*,
5 log10(Size) AS lgSize,
6 log10(Width*Length*PI()) AS lgArea
7FROM
8 `Star` Star
9LEFT JOIN
10 RawData USING(NIGHT, RUNID)
11
Note: See TracBrowser for help on using the repository browser.