How to create a partitioned table in bigquery

google-bigquery

Google recently announced partitioned tables in BigQuery which have many advantages.
However, I found no documentation of how to create such tables.
How do I create such a table, either in the UI, the CLI, or the API (java etc.)?

Best Answer

Take a look at timePartitioning property of table resources.
You can experiment with it I think :o)
More about it in Partitioned Tables and Creating and Updating Date-Partitioned Tables

Related Topic