Created
February 15, 2021 16:27
-
-
Save rifkiamil/839d0d5364913ada66a8a3561e5e013a to your computer and use it in GitHub Desktop.
SQL Bitcoin Part 2 - Find transactions with block_timestamp, block_timestamp_month, output_value WHERE block_timestamp_month
This file contains 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 block_timestamp, block_timestamp_month, output_value | |
FROM `bigquery-public-data.crypto_bitcoin.transactions` | |
WHERE block_timestamp_month = '2013-12-01' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment