google-bigquery – Google BigQuery – 使用带有日期分区表的通配符表查询?

我试图使用通配符表函数来查询一堆日期分区表.

此查询有效:

select * from `Mydataset.fact_table_1` where _partitiontime='2016-09-30' limit 10

此查询不起作用:

select * from `Mydataset.fact_table_*` where _partitiontime='2016-09-30' limit 10

这项操作不受支持吗?

如果不支持什么是从多个日期分区表中读取当天数据的最佳方法?

最佳答案 以下陈述

select * from TABLE_QUERY(YOUR_DATASET,'table_id contains "fact_table_"') where _PARTITIONTIME = TIMESTAMP('2016-09-30')

应该做的伎俩

点赞