合并SQL条件为空问题

时间:2019-04-15 12:08:40

标签: sql oracle null sql-merge

我有两个非常相似的SQL语句。在它们上工作而在不工作上。 SQL错误消息似乎具有误导性。你能弄清楚吗?

SQL 1-这很好用

    Merge into   t1 
    Using ( 
        Select art_ref_nr, channel, some_value From s1 ) t2
    On ( t1.art_ref_nr = t2.art_ref_nr and t1.channel = t2.channel
        and ( t1.datasource is null
            or (t1.datasource = 'no such value' ) -- only null values will be found
        ))
    WHEN MATCHED THEN UPDATE SET
        t1.some_value = t2.some_value
    ,   t1.datasource = 'value 1'
    ;

SQL 2 –失败

    Merge into   t1 
    Using ( 
        Select art_ref_nr, channel, some_value From s1 ) t2
    On ( t1.art_ref_nr = t2.art_ref_nr and t1.channel = t2.channel
        and ( t1.datasource is null
       ))
    WHEN MATCHED THEN UPDATE SET
        t1.some_value = t2.some_value
    ,   t1.datasource = 'value 2'
    ;

SQL1运行正常。 SQL2消息:

  

ON子句中引用的列无法更新:字符串原因:   UPDATE SET的LHS包含ON子句中引用的列

另一方面,我在两个SQL中都引用了子句“数据源”,因此错误消息不能完全是事实。

问题似乎在于,有一次我只检查空值条目。但是为什么这会影响SQL逻辑呢?

许多问候, 彼得

1 个答案:

答案 0 :(得分:1)

我的猜测是您的第一个查询不会产生错误,因为从未找到匹配的行。

对于第二个查询,它必须执行UPDATE,但不能这样做,因为您将UPDATE列引用到ON子句中。

要解决此问题,请尝试进入WHERE子句,其中ON子句的一部分引用您要更新的列:

Merge into   t1 
Using ( 
    Select art_ref_nr, channel, some_value From s1 ) t2
On (t1.art_ref_nr = t2.art_ref_nr and t1.channel = t2.channel)
WHEN MATCHED THEN UPDATE SET
    t1.some_value = t2.some_value
,   t1.datasource = 'value 2'
WHERE t1.datasource is null
;