标题: MS SQL Server 实战 排查多列之间的值是否重复 [打印本页] 作者: 丝 时间: 2024-9-17 09:01 标题: MS SQL Server 实战 排查多列之间的值是否重复 目次
需求
范例运行环境
数据样本设计
功能实现
上传EXCEL文件到数据库
SQL语句
小结
需求
在日常的应用中,排查列重复记录是经常碰到的一个题目,但某些需求下,需要我们排查一组列之间是否有重复值的环境。比如我们有一组题库数据,重要包罗题目和选项字段(如单选选择项或多选选择项) ,一个合理的数据存储应该包管这些选项列之间不应该出现重复项目数据,比如选项A不应该和选项B的值重复,选项B不应该和选项C的值重复,以此穷举类推,以包管这些选项之间不会出现重复的值。本文将介绍如何利用 group by 、having 语句来实现这一需求,重要实现如下功能:
(1)上传 EXCEL 版试题题库到 MS SQL SERVER 数据库举行导入
(2)通过 union all 将各选项列的数据举行 转记录行的归并
(3)通过 group by 语句 和 count 聚合函数统计重复环境
(4)通过 having 子句筛选出重复记录
范例运行环境
操作体系: Windows Server 2019 DataCenter
数据库:Microsoft SQL Server 2016
.netFramework 4.7.2
其次,通过 group by 对 sortid (题号) 和 item (选项) 字段举行分组统计,利用 count 聚合函数统计选项在 题号 中出现的个数,如下封装:
select item,count(item) counts,sortid from ( select A as item,sortid from exams
union all
select B as item,sortid from exams
union all
select C as item,sortid from exams
union all
select D as item,sortid from exams ) a group by sortid,item order by sortid
复制代码
最后利用 having 语句对结果集举行过滤,排查出题目记录,如下语句:
select item,count(item) counts,sortid from ( select A as item,sortid from exams
union all
select B as item,sortid from exams
union all
select C as item,sortid from exams
union all
select D as item,sortid from exams ) a group by sortid,item having count(item)>1 order by sortid
复制代码
在查询分析器运行SQL语句,显示如下图:
由此可以看出,通过查询可以排查出第4题和第8题出现选项重复题目。
小结
我们可以继承美满对结果的分析,以标注题目序号是哪几个选项之间重复,可通过如下语句实现:
select case when A=item then 'A' else ''end+case when B=item then 'B' else '' end +case when C=item then 'C' else '' end +case when D=item then 'D' else '' end tip,b.* from (select item,count(item) counts,sortid from ( select A as item,sortid from exams
union all
select B as item,sortid from exams
union all
select C as item,sortid from exams
union all
select D as item,sortid from exams ) a group by sortid,item having count(item)>1 ) b,exams c where b.sortid=c.sortid
复制代码
关键语句:case when A=item then 'A' else ''end+
case when B=item then 'B' else '' end +
case when C=item then 'C' else '' end +
case when D=item then 'D' else '' end tip
这个用于对比每一个选项列,得到对应的选项列名,运行查询分析器,结果显示如下: