I am trying to use wildcard functions to query a bunch of tables by date.
This request works:
select * from `Mydataset.fact_table_1` where _partitiontime='2016-09-30' limit 10
This request does not work:
select * from `Mydataset.fact_table_*` where _partitiontime='2016-09-30' limit 10
Is this operation not supported?
If the best way to read data from one day from multiple tables by date is not supported?
source
share