这叫做查询 一种方式 是写代码 一种方式设计视图 其实是图也是一种子查询
上代码:select * from table1 where ID in(select ID from table2 where ...)
除了in 也可以用别的运算符 如果用= > < 你得保证子查询出来的是一个值
希望我的回答对你有所帮助
select * from A where id in (select Id from B),也就是使用子查询“in”
select *
from table1 a,table2 b
where a.name=b.name and id=(select id from table3 where XX)
select * from A where id=(select Id from B)
select *from A a B b where a.name=b.name and id=(select id from C where c.name = e)