Query a dataset of BigQuery
In this example, the function code accepts the query as input parameters. It executed the query and fetched the data from BigQuery.
Code: /lessons/Query_a_dataset_of_BigQuery
Steps
Create a new function called QueryDatasetBigQuery.java.
Set parameters as the query.
Call BigQueryApi.getPage function and pass query, start, and size.
Return the data fetched from BigQuery after running the query.
Last updated