select * from temp where sex='男' and (birth=1992 or birth=1995);
一般or可以用in来替代:
select * from temp where sex='男' and birth in (1992,1995);
select * from temp where sex='男' and (birth=1992 or birth=1995);
一般or可以用in来替代:
select * from temp where sex='男' and birth in (1992,1995);