BigQuery can be accessed using both GUI and command line. To access BigQuery using a GUI console:
- Click on the menu button on the top-left corner of the console and select BigQuery from the drop-down menu. You will encounter a new console looking something like this:
![](https://static.packt-cdn.com/products/9781788834308/graphics/assets/c1e5a7af-b1b3-4442-8f54-6ab869451fab.png)
- Click on the COMPOSE QUERY button to enable the text area where queries can be written:
![](https://static.packt-cdn.com/products/9781788834308/graphics/assets/95c4d9b2-357b-4a8d-b9bd-a8aec1f5b72d.png)
- To query a public dataset, paste the following text into the text area:
#standardSQL SELECT weight_pounds, state, year, gestation_weeks FROM `bigquery-public-data.samples.natality` ORDER BY weight_pounds DESC LIMIT 10;
- Click the RUN QUERY button to run the query and observe the results, which will look like this:
![](https://static.packt-cdn.com/products/9781788834308/graphics/assets/387fbafc-879f-4e5d-9a4d-094ad049b54f.png)
Here as we can see, a public dataset named samples.natality is queried and 3.49 GB of data takes as low as 3.4 seconds to be processed. This speed and simplicity makes...