How to merge Big Query table lists?

I saved it in Big Query using Firebase Analytics.

I want SELECTevents stored in a large request. But the tables are by date.

Are there any events SELECTin these tables at the same time?

enter image description here

+4
source share
1 answer

Tick Wildcard Tablesfunction

Quick example:

#standardSQL
SELECT *
FROM `project.dataset.app_events_*`
+4
source

Source: https://habr.com/ru/post/1674800/


All Articles