微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

postgresql – 从查询更新Redshift表

我正在尝试从查询中更新Redshift中的表:
update mr_usage_au au
inner join(select mr.UserId,date(mr.ActionDate) as ActionDate,count(case when mr.EventId in (32) then mr.UserId end) as Moods,count(case when mr.EventId in (33) then mr.UserId end) as Activities,sum(case when mr.EventId in (10) then mr.Duration end) as Duration
           from   mr_session_log mr
           where  mr.EventTime >= current_date - interval '1 days' and mr.EventTime < current_date
           Group By mr.UserId,date(mr.ActionDate)) slog on slog.UserId=au.UserId
                                             and slog.ActionDate=au.Date
set au.Moods = slog.Moods,au.Activities=slog.Activities,au.Durarion=slog.Duration

但是我收到以下错误

06001

对于Redshift(或Postgres),这是完全无效的语法.让我想起了sql Server ……

应该这样工作(至少在目前的Postgres上):

UPDATE mr_usage_au
SET    Moods = slog.Moods,Activities = slog.Activities,Durarion = slog.Duration       
FROM (
   select UserId,ActionDate::date,count(CASE WHEN EventId = 32 THEN UserId END) AS Moods,count(CASE WHEN EventId = 33 THEN UserId END) AS Activities,sum(CASE WHEN EventId = 10 THEN Duration END) AS Duration
   FROM   mr_session_log
   WHERE  EventTime >= current_date - 1  -- just subtract integer from a date
   AND    EventTime <  current_date
   GROUP  BY UserId,ActionDate::date
   ) slog
WHERE slog.UserId = mr_usage_au.UserId
AND   slog.ActionDate = mr_usage_au.Date;

Postgres和Redshift通常就是这种情况:

>使用FROM子句连接其他表.
>您不能在SET子句中对目标列进行表限定.

还有,Redshift was forked from PostgreSQL 8.0.2,这是很久以前的事了.只应用了Postgres的一些后续更新.

>例如,Postgres 8.0 did not allow a table alias in an UPDATE statement,yet – 这就是你看到的错误背后的原因.

我简化了其他一些细节.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐