Oracle Query - 通过多次组合两列来选择查询

时间:2014-02-20 05:34:12

标签: oracle

我的表格看起来像

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');

任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

我相信你的意图是选择两行。所以你应该使用OR条件。

select * from <table name> 
where (col1='a' and col2='b') 
or (col1='d' and col2='e');