开发者

Oracle CTE Merge

开发者 https://www.devze.com 2023-03-07 16:02 出处:网络
I am trying a simple merge statement using a CTE(Common table expression) . But it gives an error MERGE INTOemp targ USING (

I am trying a simple merge statement using a CTE(Common table expression) . But it gives an error

MERGE INTO  emp targ USING (
*
ERROR at line 4:
ORA-00928: missing SELECT keyword

Is the CTE not allow开发者_高级运维ed in a merge statement? My Sql is below:

WITH cte AS (
  SELECT empno, ename 
    FROM EMP)
MERGE INTO emp targ USING (SELECT * 
                             FROM cte) src
  ON (targ.empno = src.empno)
WHEN MATCHED THEN update 
   SET targ.ename = src.ename
WHEN NOT MATCHED THEN insert
    (empno,ename)
  VALUES
    (src.empno,src.ename)
/


The WITH clause is for use with a SELECT statement.

From the documents: "You can specify this clause in any top-level SELECT statement and in most types of subqueries." (emphasis mine).

Here is a possible workaround if you really need to do this, from ORAFAQ. The main blog writeup is here.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号