返回数说广场
2
postgresql中,以下窗口查询语句,
select id,sum(cnt)over(order by cnt asc)
from (select unnest(array[1,2,3,4]) id
, unnest(array[11,22,22,33]) cnt
) as t1
order by t1.id;
查询结果正确的是
A
11,55,55,88
1
2 286
分享
评论
热门数说


