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
- ¿Cuáles son las ventajas y desventajas de usar Google BigQuery?
- How do I use the YEAR function in Google BigQuery?
- How do I create a schema for Google BigQuery?
- How do I rename a column in Google BigQuery?
- How do I sign in to Google Big Query?
- How can I use Google Big Query to analyze Reddit data?
- How do I use Google Big Query SQL for software development?
- How can I use Google BigQuery to wait for a query to complete?
- How do Google BigQuery and MySQL compare in terms of performance and scalability?
- How do I use the "not in" operator in Google BigQuery?
See more codes...