mysqlcount(if)_mysqlsum(if())和count(if())⽤法SELECT SUM(extcredits1) AS e1 FROM test;
SELECT SUM(if(category=1,size,0)) ,COUNT(if(category=1,true,null)) FORM t_file;
解析:
sum(if(category=1,size,0))
sum函数返回⼀个值类型的数值,如果category=1,则返回size,如果category不等于1就返回0。
樱花国际日语价格count(if(category=1,true,null))
count函数返回⼀个布尔值类型的数值,如果category=1,返回true,如果category不等于1返回null,如果写成count(If(category=1,1,0)则返回的全是true,也就是说全都会计数,⽽count()间断内容是true还是null,如果不是null就计数,
如果是null就不计数。
count(if())的写法应该是count(if(表达式表达式,true,null));
xianyan
⽰例:
原表:
id fenlei time
1 分类1 20130316
2 分类2 20130316
毕业舞会3 分类3 20130317
dia
4 分类2 20130317
5 分类3 20130318
需要查上表,得到结果插⼊新表
新表结构:
id fenlei_1 fenlei_2 fenlei_3 date
1 1 1 0 20130316
2 0 1 1 20130317
3 0 0 1 20130317sudden
即要得到每个分类在每天各⾃消息数
lect time,sum(if(fenlei='分类1',1,0 )),
sum(if(fenlei='分类2',1,0 )),sum(if(fenlei='分类3',1,0 ))
from tt
group by time
来⼀个简单的sum
lect sum(qty) as total_qty from inventory_product group by product_id
这样就会统计出所有product的qty.
风格的英语
但是很不幸,我们的系统⾥⾯居然有qty为负值。⽽我只想统计那些正值的qty,加上if function就可以了。 SQL为:
lect sum(if(qty > 0, qty, 0)) as total_qty from inventory_product group by product_id 意思是如果qty > 0, 将qty的值累加到total_qty, 否则将0累加到total_qty.
再加强⼀点:
公共交通工具lect
sum( if( qty > 0, qty, 0)) as total_qty ,
sum( if( qty < 0, 1, 0 )) as negative_qty_count
thanos
从中斡旋from inventory_product
group by product_id
这样就可以统计有多少条负值的记录了。⽅便程序⽤来告诉⼈们这条记录数据异常
catalog