select t1.month_id, count(distinct offer_name), '今年往月新增有订购' as A from zone_crmchk.dwd_sum_zhuliuxxsc t1 left join zone_crmchk.dwd_sum_zhuliuxxsc t2 on t2.month < t1.month group by t1.month
时间: 2024-02-19 16:01:07 浏览: 98
SQL_select.rar_sql 语法
这是一个 SQL 查询语句,用于统计每个月新增有订购的 offer 数量。其中,t1 和 t2 都是来自于 zone_crmchk 数据库中的 dwd_sum_zhuliuxxsc 表,并通过左连接来进行关联。具体来说,t1 表中的记录代表着当前月份的数据,而 t2 表中的记录则代表着之前月份的数据。通过在 t2 表上添加条件 t2.month < t1.month,可以保证只统计之前的月份。最后,根据 t1.month_id 进行分组,并使用 count(distinct offer_name) 统计不重复的 offer 数量,最终得到的结果会显示在第三列,显示的内容为“今年往月新增有订购”。
阅读全文