Doing a conditional aggregate (e.g. count(*) if x=y) in postgres?

Поиск
Список
Период
Сортировка
От Bryce Nesbitt
Тема Doing a conditional aggregate (e.g. count(*) if x=y) in postgres?
Дата
Msg-id 4648E8F1.4020609@obviously.com
обсуждение исходный текст
Ответы Re: Doing a conditional aggregate (e.g. count(*) if x=y) in postgres?
Re: Doing a conditional aggregate (e.g. count(*) if x=y) in postgres?
Список pgsql-sql
All;
Is there a way to get a conditional aggregate?  I have this two column view:
SELECT count(*) AS count, xx_plan.plan_name  FROM xx_membership  JOIN xx_account USING (account_id)  JOIN xx_plan USING
(plan_id)WHERE xx_membership.status = 10 GROUP BY xx_plan.plan_name;
 

And would like to add additional columns (not rows) breaking out
"status=20" and "status=30" totals.
Is this possible without a stored procedure?



В списке pgsql-sql по дате отправления: