我很简单需要一些值,具体取决于两个值,它非常简单,但我不知道如何在DB2中使用它。
例如:
col1 col2
123 abc
123 def
124 ghi
123 ghj
select col1 from table where col2 =ALL('abc','def')
答案 0 :(得分:0)
你正在使用所有错误......
我想你想要IN
select col1 from table where col2 IN ('abc','def')