google-big-queryHow do I set up a Google Big Query account?
-
First, you need to have a Google Cloud Platform account. If you don’t have one, you can create one here.
-
After logging in to your Google Cloud Platform account, you can set up a BigQuery account by clicking the “Activate BigQuery” button in the left menu.
-
Once you click the “Activate BigQuery” button, you will be prompted to accept the terms of service for using BigQuery.
-
After accepting the terms of service, you will be asked to create a project. A project is a container for all the resources related to a specific BigQuery project.
-
Once the project is created, you will be taken to the BigQuery console where you can start creating datasets, tables, and queries.
-
To get started, you can try running a sample query by clicking the “Run Query” button in the top right corner.
-
For example, the following query will return the first 10 rows from the public dataset
bigquery-public-data.samples.shakespeare
:
SELECT *
FROM `bigquery-public-data.samples.shakespeare`
LIMIT 10
Output example
Row word word_count corpus corpus_date
1 the 27361 the_tragedy_of_hamlet 1598
2 and 26028 the_tragedy_of_hamlet 1598
3 I 20681 the_tragedy_of_hamlet 1598
4 to 19261 the_tragedy_of_hamlet 1598
5 of 18389 the_tragedy_of_hamlet 1598
6 a 14667 the_tragedy_of_hamlet 1598
7 my 12431 the_tragedy_of_hamlet 1598
8 in 10956 the_tragedy_of_hamlet 1598
9 that 9547 the_tragedy_of_hamlet 1598
10 you 9178 the_tragedy_of_hamlet 1598
More of Google Big Query
- How can I use Google Big Query to count the number of zeros in a given dataset?
- 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 BigQuery to retrieve data from a specific year?
- How do I use Google Big Query to zip files?
- 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 do I query Google BigQuery using XML?
- How can I use the CASE WHEN statement in Google Big Query?
See more codes...