google-big-queryHow do I use Google BigQuery Sandbox?
Google BigQuery Sandbox is a free, interactive environment for exploring and querying public datasets using BigQuery. It allows users to access a variety of public datasets and query them using standard SQL.
To use Google BigQuery Sandbox, users must first create a Google Cloud Platform (GCP) project. This can be done by visiting the Google Cloud Platform Console. Once the project is created, users can enable the BigQuery API.
Next, users must select the BigQuery Sandbox from the GCP Console. This will open the BigQuery Sandbox web UI. From here, users can select from a variety of public datasets and query them using standard SQL.
Example code
SELECT
name,
SUM(number) as total_number
FROM
`bigquery-public-data.usa_names.usa_1910_current`
GROUP BY
name
ORDER BY
total_number DESC
LIMIT
10
Output example
+---------+---------------+
| name | total_number |
+---------+---------------+
| James | 5074720 |
| John | 5061897 |
| Robert | 4788070 |
| Michael | 4265373 |
| Mary | 4110637 |
| William | 4049134 |
| David | 3527069 |
| Richard | 2553475 |
| Joseph | 2529809 |
| Charles | 2443118 |
+---------+---------------+
Code explanation
- SELECT: specifies which columns to include in the result set
bigquery-public-data.usa_names.usa_1910_current
: specifies the table to query- SUM(): calculates the sum of the numbers in the specified column
- GROUP BY: groups the results by the specified column
- ORDER BY: orders the results by the specified column
- LIMIT: restricts the result set to the specified number of rows
Helpful links
More of Google Big Query
- How do I start using Google Big Query?
- How do I use Google Big Query with Excel?
- How can I create a Google BigQuery table?
- How can I use Google Big Query to analyze Reddit data?
- How can I use the CASE WHEN statement in Google Big Query?
- ¿Cuáles son las ventajas y desventajas de usar Google BigQuery?
- How do I use the ISNULL function in Google BigQuery?
- How can I use Google BigQuery to wait for a query to complete?
- How can I learn to use Google BigQuery?
- How can I use Google BigQuery on a Windows system?
See more codes...