我是 sql 领域的新手,我有一些问题。
如下表
Table Name:EM
ID name Birth High
1 Tom 11/23 65
2 Mary 11/23 65
3 Bill 03/02 55
4 Liny 01/08 45
5 Kevin 05/16 50
6 Lee 05/16 50
但我只需要如下数据
ID name Birth High
1 Tom 11/23 65
2 Mary 11/23 65
3 Kevin 05/16 50
4 Lee 05/16 50
我用傻瓜sql来获取这样的数据
select * from em where birth = '11/23' and high = '65';
select * from em where birth = '05/16' and high = '50';
请教我如何在一条sql语句中得到结果,非常感谢。