如何在WHERE条件中添加解码?

时间:2016-11-08 10:24:59

标签: sql

解码中的内容想要添加另一个条件?例如:

where decode (id, 'A', name not in ('B'), name not in('C')

所以请给出解决方案......

1 个答案:

答案 0 :(得分:1)

也许你可以改变这样的东西,而不必使用解码

   where (id='A' and name not in ('B')) or name not in ('C')