我需要一个查询,但我有一个取决于情况的标准。举个例子 :
让我们有一个名为 table1 的表,其中包含名为 column1 的列,而 table2 具有名为 column2 的列
在 where 子句的查询中,我需要通过 column1 和 column2 列将此 table1 与 table2 连接起来。但是,我需要这样做
if
column1 = 'x' then my criteria must be column1 = column2
else
column1 != 'x'
我如何在 Oracle 中编写这个 where 子句?
谢谢您的回答。