A、 select * from 学生 where 性别='男' and 班级编号 == (select 班级编号 from 班级 where 班主任='王笑笑')
B、 select * from 学生 where 性别='男' and 班级编号 in (select 班级编号 from 班级 where 班主任='王笑笑')
C、 select * from 学生 where 性别='男' and 班级编号 union (select 班级编号 from 班级 where 班主任='王笑笑')
D、 select * from 学生 where 性别='男' and 班级编号 as (select 班级编号 from 班级 where 班主任='王笑笑')