0

我正在尝试为 Greenplum DB 创建合并语句,但出现语法错误。所以我想知道我写它的方式是否支持 MERGE。

我有两种方法方法1-

MERGE into public.table20 pritab 
USING 
(
    select stgout.key1, stgout.key2, stgout.col1
    from public.table20_stage stgout 
    where stgout.sequence_id < 1000
) as stgtab
ON (pritab.key1 = stgtab.key1
and pritab.key2 = stgtab.key2)
WHEN MATCHED THEN
UPDATE SET pritab.key1 = stgtab.key1 
,pritab.key2 = stgtab.key2
,pritab.col1    = stgtab.col1
WHEN NOT MATCHED THEN
INSERT  (key1, key2, col1)
values (stgtab.key1, stgtab.key2, stgtab.col1);

方法二:

public.table20 pritab 
SET pritab.key1 = stgtab.key1 
    ,pritab.key2 = stgtab.key2
    ,pritab.col1    = stgtab.col1
from 
(
        select stgout.key1, stgout.key2, stgout.col1
        from public.table20_stage stgout
        where stgout.sequence_id < 1000
) as stgtab
   ON (pritab.key1 = stgtab.key1
    and pritab.key2 = stgtab.key2)
returning (stgtab.key1, stgtab.key2, stgtab.col1);

有没有其他方法或我的语法本身有问题?

4

1 回答 1

1

Greenplum 不支持合并,但我写了一篇关于如何在 Greenplum 中实现合并语句的结果的博客文章。

http://www.pivotalguru.com/?p=104

于 2015-11-24T16:11:07.747 回答