Reputation: 5962
I'm wondering how to export data from bigquery table with a lot of data (partitioned), I'd like to download data just for a day but I'm not sure if there is any mechanism available already to do this. The documentation talks about exporting all data but not based on some filter criteria.
Is it possible to run a query with where clause and save the data into another table perhaps and run export?
Upvotes: 0
Views: 1048
Reputation: 208002
Yes it's exactly as you say.
About exporting data and about storing query results in a table some Java examples are mentioned here.
Upvotes: 2