Raymond Raymond

BigQuery - Select Top N Records

event 2021-03-11 visibility 40,345 comment 0 insights toc
more_vert
insights Stats

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
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts