php中mysql的查询语句: a表中的查询结果作为b表查询的条件 这个select语句怎么写啊?

2024-11-09 10:34:54
推荐回答(2个)
回答1:

select * from b where b表字段 in (select a表字段 from a)
其中in可根据需要用其他如like等替代

回答2:

select * from b where id in (select id from a)