mysql 一个sql 返回多个总数
ringa_lee
ringa_lee 2017-04-17 16:08:37
0
3
981

文章链接:https://segmentfault.com/a/11...
说道:
一个sql 返回多个总数
$sql = "select count(*) all, " ;
$sql .= " count(case when status = 1 then status end) status_1_num, ";
$sql .= " count(case when status = 2 then status end) status_2_num ";
$sql .= " from table_name";

疑问:这条sql是否有问题,我去尝试了,报错,以前类似查询我都用多天sql的,这种都没写过,疑问多多!

ringa_lee
ringa_lee

ringa_lee

répondre à tous(3)
阿神

all果然是关键字 换个就好了
如果是要每个status的总数select status,count(*) status_num from table where status in (1,2) group by status;

小葫芦

别名使用AS
count(*) AS number

PHPzhong

select count(*) all有问题
all是mysql的关键字,改成别的名字即可

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!