我正在执行一个查询,该查询在 where 子句中有多个列,其中包含多个值。我知道在 SQL 中,您可以使用 IN 条件来满足并获得正确的输出。teradata的方法是什么?
我在 Oracle 中的代码如下所示:
select td.country_code,td.phone_num
from telephone_directory td
where (td.country_code, td.phone_num) in ((91,1234567890),(44,1020304050),(1,998877446655))
这会打印出确切的结果,即 3 行
我在 teradata 中的查询看起来像这样
select country_code ,phone_num
from telephone_directory
where (country_code in (91, 44, 1) and phone_num in( 1234567890, 1020304050, 998877446655)
然而,这会返回更多行:
country_code phone_num
91 1234567890
91 1020304050
44 1020304050
1 998877446655
注意:country_code 和电话号码的组合不是唯一的。
有没有办法像在 ORACLE 中那样在 teradata 中过滤掉它?