Last active
August 18, 2022 15:30
-
-
Save victortrac/404875d9f1f42668145e34dfed006492 to your computer and use it in GitHub Desktop.
BigQuery to find changelog updates to GCP services ordered by last update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT max(published_at) as last_update, | |
min(published_at) as first_update, | |
DATE_DIFF(max(published_at),min(published_at),DAY) as age_days, | |
product_name FROM `bigquery-public-data.google_cloud_release_notes.release_notes` | |
GROUP BY product_name | |
ORDER BY last_update asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment