How to create temporary table in Google BigQuery
问题 Is there any way to create a temporary table in Google BigQuery through: SELECT * INTO <temp table> FROM <table name> same as we can create in SQL? For complex queries, I need to create temporary tables to store my data. 回答1: 2018 update - definitive answer with DDL With BigQuery's DDL support you can create a table from the results a query - and specify its expiration at creation time. For example, for 3 days: #standardSQL CREATE TABLE `fh-bigquery.public_dump.vtemp` OPTIONS( expiration