我有三个外来表(visits, parts, problemdescription
(有一个公共列,名为:"startDateTime
">
我想加入他们,所以我使用了以下查询:
select v."startDateTime", p.znumber, pd.remark FROM visits v
INNER JOIN parts p
on s."startDateTime"=p."startDateTime" INNER JOIN problemdescription pd
on s."startDateTime"=pd."startDateTime";
但是我收到这个错误:
错误:缺少表 "s" 的 FROM 子句条目
将 s替换为 v,因为您没有表 "s"。
select v."startDateTime", p.znumber, pd.remark FROM visits v
INNER JOIN parts p
on v."startDateTime"=p."startDateTime" INNER JOIN problemdescription pd
on v."startDateTime"=pd."startDateTime";