用户消费总金额 2000以下 2000-4000 4000-6000 查询连续数字,统计个数

createtable tb_1(
    id 
int,
    xiaofei 
money,
    userid 
int,
    addtime 
datetime
)
insertinto tb_1 values(18801getdate())
insertinto tb_1 values(29502getdate())
insertinto tb_1 values(37401getdate())
insertinto tb_1 values(42544getdate())
insertinto tb_1 values(525415getdate())
insertinto tb_1 values(6803getdate())
insertinto tb_1 values(738701getdate())
insertinto tb_1 values(81002getdate())
insertinto tb_1 values(91803getdate())
insertinto tb_1 values(1032406getdate())

select*from tb_1

select userid, sum(xiaofei) as'消费总金额'from tb_1 groupby userid orderbysum(xiaofei) desc

select userid,sum(xiaofei) as'2000以下'from tb_1 groupby userid havingsum(xiaofei) <2000 
select userid,sum(xiaofei) as'2000-4000'from tb_1 groupby userid havingsum(xiaofei) between2000and4000 
select userid,sum(xiaofei) as'4000-6000'from tb_1 groupby userid havingsum(xiaofei) between4000and6000 

droptable tb_1

/*

userid      消费总金额
----------- ---------------------
1           5490.00
6           3240.00
5           2541.00
2           1050.00
3           260.00
4           254.00

(6 行受影响)

userid      2000以下
----------- ---------------------
2           1050.00
3           260.00
4           254.00

(3 行受影响)

userid      2000-4000
----------- ---------------------
5           2541.00
6           3240.00

(2 行受影响)

userid      4000-6000
----------- ---------------------
1           5490.00

(1 行受影响)

*/

 

 --查询连续数字,统计个数

create  table tb1(NUM  INT)
INSERT  INTO tb1
SELECT  1  
UNION  ALL  SELECT  2  
UNION  ALL  SELECT  3  
UNION  ALL  SELECT  4  
UNION  ALL  SELECT  5  
UNION  ALL  SELECT  12  
UNION  ALL  SELECT  17  
UNION  ALL  SELECT  18  
UNION  ALL  SELECT  19  
UNION  ALL  SELECT  20  
UNION  ALL  SELECT  25  
UNION  ALL  SELECT  30  
go

select  *  from tb1
drop  table tb1,#tb

-- sql2000
select num,rid = identity( int, 1, 1into #tb  from tb1
select  min(num) minNum, max(num) maxNum, count( 1) cnt
from #tb
group  by (num -rid)
having  count( *>  1

-- sql2005

select 开始 = min(num),结束 = max(num), count( 1) cnt  from     (
select row_number() over ( order  by num)  as rid, *  from tb1
) a  group  by num -rid  having( count( 1) > 1)


-- 结果:
--
1        5    5
--
12    12    1
--
17    20    4
--
25    25    1

--30    30    1 


    本文转自曾祥展博客园博客,原文链接:http://www.cnblogs.com/zengxiangzhan/archive/2010/01/03/1638193.html,如需转载请自行联系原作者



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值