我不能结合这个查询,但如果执行分开都很好。
select name
from zone
where id IN (select proj_tbl_id from project where proj_name = '$project2')
第二次查询的结果
select proj_tbl_id from project where proj_name = '$project2') = (13,14)
如果按以下方式运行,则结果为真。
select name from zone where id IN (13,14)
1条答案
按热度按时间8nuwlpux1#
你可以用
exists
操作员: