BigQuery - Select Top N Records

Raymond Raymond visibility 34,120 event 2021-03-11 access_time 3 years ago language English

In BigQuery, there is no TOP N clause implemented however there is LIMIT clause available.

LIMIT clause

The following query retrieves 10 records from table table_name of data set data_set in project project_test.

select * from  `project_test.data_set.table_name` limit 10;

Cost implications

warning LIMIT clause doesn't reduce cost! Please add necessary filters and only query the required columns to reduce cost.

It's very important to understand that LIMIT doesn't reduce your query cost. In the above example, all the records in the table will be read and then only 10 will be returned.  Thus please take this into consideration.

Preview feature

If the purpose is to inspect the sample data in the table, please use preview feature of BigQuery which is free.

Follow these steps to do that:

  • Expand your BigQuery project and data set.
  • Select the table you'd like to inspect.
  • In the opened tab, click Preview

Preview will show the sample data in the table.

20210311103645-image.png

More from Kontext
info Last modified by Raymond 3 years ago copyright This page is subject to Site terms.
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts