sql

xin36933 2009-09-24 02:55:53
tb

id adate money
1 2009年1月 100
2 2009年1,2月 100
3 2009年12月 100
4 2009年5月 100
5 2009年6,7月 100
6 2009年9,10月 100
7 2009年8月 100
8 2009年4,5,6月 100
9 2009年1月 100
10 2009年8,9,10月 100
11 2009年11,12月 100
12 2009年6月 100


查找出2月总money是多少
...全文
74 12 打赏 收藏 转发到动态 举报
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
--小F-- 2009-09-24
  • 打赏
  • 举报
回复
----------------------------------------------------------------
-- Author :fredrickhu(我是小F,向高手学习)
-- Date :2009-09-24 14:57:50
-- Version:
-- Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86)
-- Nov 24 2008 13:01:59
-- Copyright (c) 1988-2005 Microsoft Corporation
-- Developer Edition on Windows NT 5.2 (Build 3790: Service Pack 1)
--
----------------------------------------------------------------
--> 测试数据:[tb]
if object_id('[tb]') is not null drop table [tb]
go
create table [tb]([id] int,[adate] varchar(14),[money] int)
insert [tb]
select 1,'2009年1月',100 union all
select 2,'2009年1,2月',100 union all
select 3,'2009年12月',100 union all
select 4,'2009年5月',100 union all
select 5,'2009年6,7月',100 union all
select 6,'2009年9,10月',100 union all
select 7,'2009年8月',100 union all
select 8,'2009年4,5,6月',100 union all
select 9,'2009年1月',100 union all
select 10,'2009年8,9,10月',100 union all
select 11,'2009年11,12月',100 union all
select 12,'2009年6月',100
--------------开始查询--------------------------
;with f as
(
select
a.id,b.[adate],a.[money]
from
(select id,[money],[adate]=convert(xml,'<root><v>'+replace(substring([adate],charindex('年',[adate])+1,len([adate])-1),',','</v><v>')+'</v></root>') from Tb)a
outer apply
(select [adate]=C.v.value('.','nvarchar(100)') from a.[adate].nodes('/root/v')C(v))b
)

select adate,sum(money) as money from f where adate='2月' group by adate

----------------结果----------------------------
/* adate money
---------------------------------------------------------------------------------------------------- -----------
2月 100

(1 行受影响)
*/
SQL77 2009-09-24
  • 打赏
  • 举报
回复
IF OBJECT_ID('TB') IS NOT NULL DROP TABLE TB
GO
CREATE TABLE TB(ID INT,ADATE VARCHAR(100),[MONEY] NUMERIC(19,2))
INSERT INTO TB
SELECT 1 ,'2009年1月', 100 UNION ALL
SELECT 2 ,'2009年1,2月', 100 UNION ALL
SELECT 3 ,'2009年12月', 100 UNION ALL
SELECT 4 ,'2009年5月', 100 UNION ALL
SELECT 5 ,'2009年6,7月', 100 UNION ALL
SELECT 6 ,'2009年9,10月', 100 UNION ALL
SELECT 7 ,'2009年8月', 100 UNION ALL
SELECT 8 ,'2009年4,5,6月', 100 UNION ALL
SELECT 9 ,'2009年1月', 100 UNION ALL
SELECT 10 ,'2009年8,9,10月', 100 UNION ALL
SELECT 11 ,'2009年11,12月', 100 UNION ALL
SELECT 12 ,'2009年6月', 100

SELECT
SUM(CASE WHEN CHARINDEX(',2,',REPLACE(REPLACE(ADATE,'年',','),'月',','))>0 THEN [MONEY] ELSE 0 END)
FROM TB


(所影响的行数为 12 行)


----------------------------------------
100.00

(所影响的行数为 1 行)
--小F-- 2009-09-24
  • 打赏
  • 举报
回复
----------------------------------------------------------------
-- Author :fredrickhu(我是小F,向高手学习)
-- Date :2009-09-24 14:57:50
-- Version:
-- Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86)
-- Nov 24 2008 13:01:59
-- Copyright (c) 1988-2005 Microsoft Corporation
-- Developer Edition on Windows NT 5.2 (Build 3790: Service Pack 1)
--
----------------------------------------------------------------
--> 测试数据:[tb]
if object_id('[tb]') is not null drop table [tb]
go
create table [tb]([id] int,[adate] varchar(14),[money] int)
insert [tb]
select 1,'2009年1月',100 union all
select 2,'2009年1,2月',100 union all
select 3,'2009年12月',100 union all
select 4,'2009年5月',100 union all
select 5,'2009年6,7月',100 union all
select 6,'2009年9,10月',100 union all
select 7,'2009年8月',100 union all
select 8,'2009年4,5,6月',100 union all
select 9,'2009年1月',100 union all
select 10,'2009年8,9,10月',100 union all
select 11,'2009年11,12月',100 union all
select 12,'2009年6月',100
--------------开始查询--------------------------
;with f as
(
select
a.id,b.[adate],a.[money]
from
(select id,[money],[adate]=convert(xml,'<root><v>'+replace(substring([adate],charindex('年',[adate])+1,len([adate])-1),',','</v><v>')+'</v></root>') from Tb)a
outer apply
(select [adate]=C.v.value('.','nvarchar(100)') from a.[adate].nodes('/root/v')C(v))b
)

select adate,sum(money) as money from f group by adate

----------------结果----------------------------
/*
*/
xiequan2 2009-09-24
  • 打赏
  • 举报
回复

--> 测试数据:@tb
declare @tb table([id] int,[adate] varchar(14),[money] int)
insert @tb
select 1,'2009年1月',100 union all
select 2,'2009年1,2月',100 union all
select 3,'2009年12月',100 union all
select 4,'2009年5月',100 union all
select 5,'2009年6,7月',100 union all
select 6,'2009年9,10月',100 union all
select 7,'2009年8月',100 union all
select 8,'2009年4,5,6月',100 union all
select 9,'2009年1月',100 union all
select 10,'2009年8,9,10月',100 union all
select 11,'2009年11,12月',100 union all
select 12,'2009年6月',100



select sum(money)
from (
select * from @tb where charindex(',2',adate)>0 or charindex('年2',adate)>0
) m
/*

-----------
100

(1 行受影响)

*/
guguda2008 2009-09-24
  • 打赏
  • 举报
回复
或者这样

IF OBJECT_ID('TB') IS NOT NULL DROP TABLE TB
GO
CREATE TABLE TB(ID INT,ADATE VARCHAR(100),[MONEY] NUMERIC(19,2))
INSERT INTO TB
SELECT 1 ,'2009年1月', 100 UNION ALL
SELECT 2 ,'2009年1,2月', 100 UNION ALL
SELECT 3 ,'2009年12月', 100 UNION ALL
SELECT 4 ,'2009年5月', 100 UNION ALL
SELECT 5 ,'2009年6,7月', 100 UNION ALL
SELECT 6 ,'2009年9,10月', 100 UNION ALL
SELECT 7 ,'2009年8月', 100 UNION ALL
SELECT 8 ,'2009年4,5,6月', 100 UNION ALL
SELECT 9 ,'2009年1月', 100 UNION ALL
SELECT 10 ,'2009年8,9,10月', 100 UNION ALL
SELECT 11 ,'2009年11,12月', 100 UNION ALL
SELECT 12 ,'2009年6月', 100

SELECT
SUM(CASE WHEN CHARINDEX(',2',REPLACE(ADATE,'年',','))>0 THEN [MONEY] ELSE 0 END)
FROM TB
--100.00

guguda2008 2009-09-24
  • 打赏
  • 举报
回复
IF OBJECT_ID('TB') IS NOT NULL DROP TABLE TB
GO
CREATE TABLE TB(ID INT,ADATE VARCHAR(100),[MONEY] NUMERIC(19,2))
INSERT INTO TB
SELECT 1 ,'2009年1月', 100 UNION ALL
SELECT 2 ,'2009年1,2月', 100 UNION ALL
SELECT 3 ,'2009年12月', 100 UNION ALL
SELECT 4 ,'2009年5月', 100 UNION ALL
SELECT 5 ,'2009年6,7月', 100 UNION ALL
SELECT 6 ,'2009年9,10月', 100 UNION ALL
SELECT 7 ,'2009年8月', 100 UNION ALL
SELECT 8 ,'2009年4,5,6月', 100 UNION ALL
SELECT 9 ,'2009年1月', 100 UNION ALL
SELECT 10 ,'2009年8,9,10月', 100 UNION ALL
SELECT 11 ,'2009年11,12月', 100 UNION ALL
SELECT 12 ,'2009年6月', 100

SELECT
SUM(CASE WHEN CHARINDEX('2',REPLACE(REPLACE(ADATE,'12',''),'2009',''))>0 THEN [MONEY] ELSE 0 END)
FROM TB
--100
dawugui 2009-09-24
  • 打赏
  • 举报
回复
应该这样才对,把'2009年','月'都去掉.

select sum(money) from tb where ','+replace(replace(adate,'2009年',''),'月','')+',' like '%,2,%'
select sum(money) from tb where charindex('%,2,%',','+replace(replace(adate,'2009年',''),'月','')+',') > 0
ming_Y 2009-09-24
  • 打赏
  • 举报
回复
第2条记录都1,2月在一起,怎么算呢?
dawugui 2009-09-24
  • 打赏
  • 举报
回复
select sum(money) from tb where ','+substring(adate,6,len(adate))+',' like '%,2,%'
select sum(money) from tb where charindex('%,2,%',','+substring(adate,6,len(adate))+',') > 0
dawugui 2009-09-24
  • 打赏
  • 举报
回复
select sum(money) from tb where ','+adate+',' like '%,2,%'
select sum(money) from tb where charindex('%,2,%',','+adate+',') > 0
dawugui 2009-09-24
  • 打赏
  • 举报
回复
select sum(money) from tb where ','+adate+',' like '%,2,%'
soft_wsx 2009-09-24
  • 打赏
  • 举报
回复
字符串分拆统计

34,872

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧