我尝试将表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
答案 0 :(得分:1)
您的子选择a
没有字段time_record
。尝试将其添加到子选择中。 (a.type
相同。)