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 班主任=’王笑笑’)