Ik zou eerst de tabellen samenvoegen (in BigQuery is de syntaxis voor samenvoegen een komma). Dan zijn er twee benaderingen:
- Gebruik analytische functies FIRST_VALUE en LAST_VALUE.
SELECT id, timestamp_first, timestamp_last, data FROM
(SELECT
id,
timestamp,
FIRST_VALUE(timestamp) OVER(
PARTITION BY id
ORDER BY timestamp ASC
ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
AS timestamp_first,
LAST_VALUE(timestamp) OVER(
PARTITION BY id
ORDER BY timestamp ASC
ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
AS timestamp_last
FROM table1, table2, table3 - Gebruik aggregatie MIN/MAX op tijdstempel om de eerste/laatste te vinden en ga dan terug naar dezelfde tabellen.
SELECT a.id id, timestamp_first, timestamp_last, data FROM (SELECT id, data FROM table1,table2,table3) a INNER JOIN (SELECT id, MIN(timestamp) timestamp_first, MAX(timestamp) timestamp_last FROM table1,table2,table3 GROUP BY id) b ON a.id = b.id