google-big-queryHow can I get started with a free trial of Google BigQuery?
Getting started with a free trial of Google BigQuery is easy.
- Create a Google Cloud Platform account.
- Go to the BigQuery Console in the Google Cloud Platform Console.
- Click the "Try it free" button.
- Accept the terms of service.
- Click the "Activate" button.
- Once your account is activated, you can start using BigQuery.
- To test out BigQuery, you can run a simple SQL query in the BigQuery Console. For example, the following query will return the top 10 most populous cities in the world:
SELECT name, population
FROM `bigquery-public-data.census_bureau_world_cities.world_cities`
ORDER BY population DESC
LIMIT 10
The output of this query should look like this:
+-----------------+------------+
| name | population |
+-----------------+------------+
| Shanghai | 24150000 |
| Istanbul | 13720000 |
| Karachi | 12920000 |
| Mumbai | 12690000 |
| Moscow | 12500000 |
| São Paulo | 12180000 |
| Beijing | 11720000 |
| Guangzhou | 11070000 |
| Delhi | 11060000 |
| Shenzhen | 10358000 |
+-----------------+------------+
By running this query, you can get a quick introduction to BigQuery and start exploring the data available in BigQuery.
More of Google Big Query
- How can I use Google Big Query to count the number of zeros in a given dataset?
- How do I use Google Big Query to zip files?
- How can I use Google BigQuery ML to build a machine learning model?
- How can I use Google BigQuery to retrieve data from a specific year?
- How can I use Google Big Query to integrate with Zephyr?
- ¿Cuáles son las ventajas y desventajas de usar Google BigQuery?
- How can I use Google Big Query to process XML data?
- How do I use the YEAR function in Google BigQuery?
- How do I use Google Big Query with Excel?
- How can I use Google BigQuery to wait for a query to complete?
See more codes...