我有一张这样的桌子:
Table "public.statistics"
id | integer | not null default nextval('statistics_id_seq'::regclass)
goals | hstore |
项目:
|id |goals |
|30059 |"3"=>"123" |
|27333 |"3"=>"200", "5"=>"10" |
我需要做些什么来通过哈希键聚合所有值?
我想得到这样的结果:
select sum(goals) from statistics
返回
|goals |
|"3"=>"323", "5"=>"10" |