google-big-queryHow can I use the Google BigQuery free tier?
The Google BigQuery free tier allows users to query up to 1TB of data per month at no cost. To use the free tier, users must have a Google Cloud Platform account and must enable billing.
To start using BigQuery free tier, users can use the bq
command line tool. An example of how to query data using the bq
command line tool is as follows:
bq query --use_legacy_sql=false 'SELECT * FROM [bigquery-public-data:samples.shakespeare] LIMIT 10'
The output of the query will be the first 10 lines of Shakespeare's writings:
+----+------------+---------+---------+
| id | word | word_id | volume |
+----+------------+---------+---------+
| 1 | O | 8462 | 26 |
| 2 | all | 8463 | 26 |
| 3 | men | 8464 | 26 |
| 4 | should | 8465 | 26 |
| 5 | be | 8466 | 26 |
| 6 | created | 8467 | 26 |
| 7 | equal | 8468 | 26 |
| 8 | . | 8469 | 26 |
| 9 | My | 8470 | 26 |
| 10 | excellent | 8471 | 26 |
+----+------------+---------+---------+
Code explanation
bq query
: runs a query on BigQuery--use_legacy_sql=false
: uses standard SQL instead of legacy SQLSELECT * FROM [bigquery-public-data:samples.shakespeare]
: selects all columns from theshakespeare
table in thesamples
dataset in thebigquery-public-data
projectLIMIT 10
: limits the number of results to 10
For more information on using the Google BigQuery free tier, please refer to the Google Cloud Platform Documentation.
More of Google Big Query
- ¿Cuáles son las ventajas y desventajas de usar Google BigQuery?
- How do I use the YEAR function in Google BigQuery?
- How do Google BigQuery and Azure compare in terms of performance and cost?
- How can I use Google Big Query with Udemy?
- How do I use the UNION clause in Google BigQuery?
- How can I use Google Big Query with Python?
- How do I use Google Big Query Storage?
- How do I create a schema for Google BigQuery?
- How do I use Google Big Query SQL for software development?
- How can I use Google Big Query to analyze Reddit data?
See more codes...