我的表格看起来像
col1 col2 col3
a b c
d e f
我需要选择查询一些像
这样的东西select * from <table name> where (col1='a' and col2='b')
and (col1='d' and col2='e');
任何人都可以帮忙吗?
答案 0 :(得分:0)
我相信你的意图是选择两行。所以你应该使用OR条件。
select * from <table name>
where (col1='a' and col2='b')
or (col1='d' and col2='e');