SQL查找某一字段相同,某一字段不同的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL查找某一字段相同,某一字段不同的数据相关的知识,希望对你有一定的参考价值。

如上图,A列张三对应的C列有两个结果,则将C列每个不同的结果任意显示一条(全部显示也行)
李四、王五对应的C列只有一个结果,不需要显示

1、在我们的电脑上打开数据库,这里新建一张含有重复数据的user表做示例。

2、我们输入“select * from user where name in (select name from user group by name having count(name) > 1) ”sql语句,点击运行可以看到查询出了数据库中user表的重复数据。

3、通过“delete from user where   name in (select name from user group by name  having count(name) > 1) ”sql语句删除姓名重复的数据。

4、通过“select distinct name from user”sql语句来去掉重复数据,这里去掉了张三的重复数据。

5、通过“select distinct class from user”sql语句来去掉班级相同的重复数据。

6、也可以通过“select distinct name,class from user”来去掉两个字段的重复数据。

参考技术A

创建测试表

create table t
(a varchar(10),
b int,
c varchar(1))

insert into t values ('张三',1,'Y')
insert into t values ('张三',2,'Y')
insert into t values ('张三',3,'N')
insert into t values ('李四',1,'Y')
insert into t values ('王五',1,'Y')
insert into t values ('王五',2,'Y')

执行查询

select a,MIN(b) b,c from t
where a in 
(select a from t group by a having COUNT(distinct c)>1)
group by a,c


结果

本回答被提问者和网友采纳
参考技术B select a,c from table group by a,c order by a,c 参考技术C select * from table
group by C
having count(distinct(C))>1

sql中如何查看某一字段值有几个数值

用分组,组内计数就可以了,意思就是根据字段a的取值进行分组,相同的为一组,在用count进行组内计数select a,count(*)from Agroup by a 参考技术A CREATE proc Full_Search(@string varchar(50))
as
begin

declare @tbname varchar(50)
declare tbroy cursor for select name from sysobjects
where xtype= 'u ' --第一个游标遍历所有的表

open tbroy
fetch next from tbroy into @tbname
while @@fetch_status=0
begin

declare @colname varchar(50)
declare colroy cursor for select name from syscolumns
where id=object_id(@tbname) and xtype in (
select xtype from systypes
where name in ( 'varchar ', 'nvarchar ', 'char ', 'nchar ') --数据类型为字符型的字段
) --第二个游标是第一个游标的嵌套游标,遍历某个表的所有字段

open colroy
fetch next from colroy into @colname
while @@fetch_status=0
begin

declare @sql nvarchar(1000),@j int
select @sql= 'select @i=count(1) from ' +@tbname + ' where '+ @colname+ ' like '+ '''%'+@string+ '%'''
exec sp_executesql @sql,N'@i int output',@i=@j output --输出满足条件表的记录数
if @j> 0
BEGIN
select 包含字串的表名=@tbname
--exec( 'select distinct '+@colname+' from ' +@tbname + ' where '+ @colname+ ' like '+ '''%'+@string+ '%''')
END
fetch next from colroy into @colname
end

close colroy
deallocate colroy

fetch next from tbroy into @tbname
end
close tbroy
deallocate tbroy
end
go本回答被提问者采纳
参考技术B 很简单的事情,非得回答的这么复杂干嘛?我来回答一下。

SELECT count(DISTINCT col_name) from table_name;

以上是关于SQL查找某一字段相同,某一字段不同的数据的主要内容,如果未能解决你的问题,请参考以下文章

SQL语句来判断数据库某一列下是不是有相同值的记录方法

SQL - 查询某一字段值相同而另一字段值最大的记录

thinkPHP5 对数据库某一字段的数据批量增加2

怎么一次查询出某一字段相同的全部数据

SQL如何查询出某一列中不同值出现的次数?

sql中如何查看某一字段值有几个数值