计算销售人员在2018年的销售额和利润
select sales_name,SUM(sales),SUM(profit)【这里是计算】
from spm_order【这里是表名】
where order_date bwtween "2018-01-01" and "2018-12-31"【用bwtween 显示时间段】
group by sales_name【group表示分组,by后面是字段名;这里是字段名】
注意:【】为注释
计算销售人员在2018年的销售额和利润
select sales_name,SUM(sales),SUM(profit)【这里是计算】
from spm_order【这里是表名】
where order_date bwtween "2018-01-01" and "2018-12-31"【用bwtween 显示时间段】
group by sales_name【group表示分组,by后面是字段名;这里是字段名】
注意:【】为注释
本文标题:SQL查询案例1:计算销售人员在2018年的销售额和利润
本文链接:https://www.haomeiwen.com/subject/xlfkmhtx.html
网友评论