计算一个表中的商并将其存储在另一个表中

时间:2013-06-11 09:25:53

标签: sql postgresql postgresql-8.4

我有a small Facebook card game用户可以互相评价。

这些评级作为布尔值pref_rep存储在PostgreSQL 8.4.13表nice中,也可以为null:

# \d pref_rep;
                                       Table "public.pref_rep"
  Column   |            Type             |                         Modifiers
-----------+-----------------------------+-----------------------------------------------------------
 id        | character varying(32)       | not null
 author    | character varying(32)       | not null
 nice      | boolean                     |
 comment   | character varying(256)      |
 rep_id    | integer                     | not null default nextval('pref_rep_rep_id_seq'::regclass)
Indexes:
    "pref_rep_pkey" PRIMARY KEY, btree (id, author)
Check constraints:
    "pref_rep_check" CHECK (id::text <> author::text)
Foreign-key constraints:
    "pref_rep_author_fkey" FOREIGN KEY (author) REFERENCES pref_users(id) ON DELETE CASCADE
    "pref_rep_id_fkey" FOREIGN KEY (id) REFERENCES pref_users(id) ON DELETE CASCADE

我想将这些评级显示为用户头像的饼图:

enter image description here

所以我正在尝试以下内容 -

首先从pref_rep中选择一个商(漂亮/漂亮+不漂亮):

# select id,
    (count(nullif(nice, false)) - count(nullif(nice, true))) / count(nice) as rating
    from pref_rep
    where nice is not null
    group by id;

           id            | rating
-------------------------+--------
 DE10072                 |     -1
 DE10086                 |      0
 DE10087                 |      1
 DE10088                 |     -1
 DE10095                 |      0
 DE10097                 |      1
 DE10105                 |      0

为什么不在这里打印0到1的浮点数?

然后我试图将这个商存储在pref_users表中 - 由于性能原因我想通过夜间cronjob来实现:

# update pref_users u
set rating = s.rating
from (
        select
        id,
        count(nullif(nice, false)) - count(nullif(nice, true)) / count(nice) as rating
        from pref_rep
        where nice is not null
        group by id
) s
where u.id = s.id;

UPDATE 25419

这很快就完成了,但是为什么rating中的所有pref_users值都设置为空?

1 个答案:

答案 0 :(得分:1)

评级:

select id,
    coalesce(
        (count(nice or null) - count(not nice or null))::float
        / count(nice)
    , 0) as rating
from pref_rep
group by id;

count不计算空值。 true or null将返回truefalse or null将返回null。所有内容都转移到float以进行float返回。

至于为什么你的更新只产生空值我不知道。发布一些示例数据,以便我们可以使用它。