Skip to content

Instantly share code, notes, and snippets.

@lakshmanok
Last active October 6, 2016 18:37
Show Gist options
  • Save lakshmanok/43d4acac0dde31a7a042a7e0a2bf8fa8 to your computer and use it in GitHub Desktop.
Save lakshmanok/43d4acac0dde31a7a042a7e0a2bf8fa8 to your computer and use it in GitHub Desktop.
Repeatable sampling in BigQuery
SELECT
date,
airline,
departure_airport,
departure_schedule,
arrival_airport,
arrival_delay
FROM
[bigquery-samples:airline_ontime_data.flights]
WHERE
ABS(HASH(date)) % 10 < 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment