create table #
(用户ID int, 姓名 varchar(10), 年龄 int )
insert into #
select 111, '张三', 26 union all
select 222, '李四', 25 union all
select 333, '王五', 30 union all
select 111, 26
方法: select distinct * from #
情况2:表中存在部分数据重复的字段,即 重复数据中至少有一个字段不重复总结
create table #
(用户ID int,姓名 varchar(10),年龄 int, 日期 DateTime )
insert into #
select 111,'张三',26 2010-02-23 union all
select 222,'李四',25 2010-03-13 union all
select 333,'王五',30 2011-03-25 union all
select 111,26 2011-07-07
方法:--当两条重,取日期大的一条select * from t awhere not exists (select 1 from t where a.用户ID=用户ID a.姓名=姓名 and 日期>a.日期)
以上是内存溢出为你收集整理的SQL Server查询语句过滤重复的数据全部内容,希望文章能够帮你解决SQL Server查询语句过滤重复的数据所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)