You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT*FROM (SELECTmain.UNIQUE_ID,
main.DATE_OF_STOP,
main.CLOSEST_CITY,
TIME_OF_STOP,
twilight.CTWILIGHT_BEGINas twilight_begin,
twilight.CTWILIGHT_ENDas twilight_end,
CASE WHEN TIME_OF_STOP >twilight.CTWILIGHT_BEGINAND TIME_OF_STOP <twilight.CTWILIGHT_END THEN "Within civil twilight" ELSE "in the dark..." END as IN_TWILIGHT
FROM
aa_main_table as main
INNER JOIN
civil_twilight_hours as twilight
ONtwilight.DATE_OF_STOP=main.DATE_OF_STOPANDtwilight.CLOSEST_CITY=main.CLOSEST_CITY
)
The text was updated successfully, but these errors were encountered:
chekos
added
the
suggestion
A canned query suggestion (to be included by default in future deployment)
label
Jul 7, 2020
Civil Twilight draft
query
The text was updated successfully, but these errors were encountered: