BigQuery无法识别连接中的子选择字段

时间:2016-02-08 15:51:11

标签: mysql google-bigquery

我尝试将表B中的id和first_time与time_record组合并输入表A,加入id。但是我得到了

的错误
a.time_record is not a field of either table in the join

知道如何解决这个问题吗?我很确定表A有两列。以下是我使用的查询。

select b.id, b.first_time as day0, a.time_record,a.type
from mydata.b as b
left join each
(select id 
from table_date_range(mydata.b, timestamp("2016-01-20"),timestamp("2016-02-03")) 
group by id) 
as a
on a.id = b.id 

1 个答案:

答案 0 :(得分:1)

您的子选择a没有字段time_record。尝试将其添加到子选择中。 (a.type相同。)