Skip to content

Not support WHERE clauses in a MERGE UPDATE  #676

@yiliachenh

Description

@yiliachenh

Actual Behavior

Expected Behavior

Steps to Reproduce the Problem

merge INTO M_KC21 USING
(SELECT AAA, BBB FROM I_KC21 WHERE I_KC21.aaa = 'li_kun'
) TEMP ON (TEMP.AAA = M_KC21.AAA)
WHEN MATCHED THEN
UPDATE SET M_KC21.BBB = 6 ### WHERE enterprise_id IN (0, 1)
WHEN NOT MATCHED THEN
INSERT VALUES
(TEMP.AAA,TEMP.BBB
)

Do not support WHERE clauses in a MERGE UPDATE

Specifications

  • Version:
  • Platform:
  • Subsystem:

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions