我有这些表:
- 机器
- machine_component_lookup
- 零件
machine_component_lookup 表具有给组件表记录提供键的记录,给定机器表的主键。我想列出组件和机器表中的列
select port,
portrole,
machine.machine_key
from component a
where a.component_key in (select b.component_key
from machine_component_lookup b
join machine c
on b.machine_key =c.machine_key );
我收到错误,因为缺少 table 的 FROM 子句条目,我缺少什么?