SQL Server查询语句过滤重复的数据
情况一:表中存在完全重复的的数据,即所有字段内容都是相同的 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
情况一:表中存在完全重复的的数据,,即所有字段内容都是相同的
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 allselect 222, '李四', 25 2010-03-13 union allselect 333, '王五', 30 2011-03-25 union allselect 111, '张三', 26 2011-07-07方法:--当两条重,取日期大的一条
select * from t a
where not exists (select 1 from t where a.用户ID=用户ID a.姓名=姓名 and 日期>a.日期)
下一篇: 如何使用node结合swig渲染摸板
推荐阅读
-
sql server中通过查询分析器实现数据库的备份与恢复方法分享
-
sqlserver中重复数据值只取一条的sql语句
-
SQLServer中用T—SQL命令查询一个数据库中有哪些表的sql语句
-
sql语句查询数据库中的表名/列名/主键/自动增长值实例
-
SQL语句查询数据库中重复记录的个数
-
在SQL Server中查询资料库的TABLE数量与名称的sql语句
-
用SQL语句查询数据库中某一字段下相同值的记录方法
-
SQL SERVER 查询正在实行的SQL语句
-
在SQL Server中使用SQL语句查询一个存储过程被其它所有的存储过程引用的存储过程名
-
强制SQL Server执行计划使用并行提升在复杂查询语句下的性能