首页 > 代码库 > SQL 查询学习
SQL 查询学习
1、表数据如下
ID stuid status
1 100 1
3 200 1
4 2343 1
5 52 3
6 42 5
7 333 1
想得到下面结果
stuid 总数
100,200,2343,333 4
首先创建试验表
1 with tablea as 2 (3 select 1 as id,100 as stuid,1 as status union all 4 select 3 ,200,1 union all 5 select 4 ,2343,1 union all 6 select 5 ,52,3 union all 7 select 6 ,42,5 union all8 select 7 ,333,1 )
SQL 语句实现
SELECT stuff(Select ‘,‘ +convert(nvarchar(100),stuid) from tablea where status=1 order by stuid FOR XML PATH(‘‘)),1,1,‘‘)
AS stuid,count(*) as 总数 from tablea as a where status=1
SQL 查询学习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。