博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql 字符串分割后分组
阅读量:6632 次
发布时间:2019-06-25

本文共 525 字,大约阅读时间需要 1 分钟。

1 create table #tb 2 ( 3  id int, 4  col varchar(50), 5  num int 6 ) 7 insert into #tb select 1,'aa,bb,cc,',10 8 union all select 2,'dd,bb,aa,',20 9 union all select 3,'cc,aa,ff,',3010 11 with segmentations as12 (13    select b.id,14           number=substring(col,A.id,charindex(',',col+',',A.id)-A.id)15     from #TT A join #tb b on substring(','+col,A.id,1)=','16 )17 select number,count(distinct id) [count],count(number) [number] from segmentations group by number

 

转载于:https://www.cnblogs.com/wlwjc/articles/2629072.html

你可能感兴趣的文章
Android shell command execute Demo
查看>>
SSO单点登录解决方案
查看>>
什么是分布式系统中的幂等性
查看>>
I.MX6 ar1020 SPI device driver hacking
查看>>
JS面向对象概述
查看>>
WinForm中使用DDE技术(含源码)
查看>>
iOS - OC PList 数据存储
查看>>
一个小时学会MySQL数据库
查看>>
iOS - Mac OS X 终端命令
查看>>
[裴礼文数学分析中的典型问题与方法习题参考解答]4.5.10
查看>>
一:解决VirtualBox只能安装32位系统的问题
查看>>
<七>面向对象分析之UML核心元素之包
查看>>
容器生态系统 - 每天5分钟玩转容器技术(2)
查看>>
Excel 当前行高亮
查看>>
ABP Zero 本地化语言的初始化和扩展
查看>>
java只有值传递,不存在引用传递
查看>>
看 nova-scheduler 如何选择计算节点 - 每天5分钟玩转 OpenStack(27)
查看>>
[常微分方程]2014-2015-2第7教学周第1次课讲义 3.2 解的延拓
查看>>
OCP如何查看历史成绩(2)
查看>>
【故障处理】序列cache值过小导致CPU利用率过高
查看>>