select * from 表一 where 字段1 in (select 字段 1 from 表二)
select a.*,b.* from 表1 a inner join 表2 b on a.你要相等的字段=b.你要相等的字段where 你的其他条件貌似是sql语句的事了
select a.*,b.* from A表 a,B表 b where a.字段A = b.字段B