SQL查询时如何去掉重复记录后保留最新的记录
展开全部
测试数据:
if object_id('tempdb.dbo.#') is not null drop table #
create table #(姓名 varchar(8), 日期 datetime)
insert into #
select '张三', '2009-01-01' union all
select '张三', '2010-10-10' union all
select '李四', '2010-1-10'
select * from # t where not exists (select 1 from # where 姓名=t.姓名 and 日期>t.日期)
if object_id('tempdb.dbo.#') is not null drop table #
create table #(姓名 varchar(8), 日期 datetime)
insert into #
select '张三', '2009-01-01' union all
select '张三', '2010-10-10' union all
select '李四', '2010-1-10'
select * from # t where not exists (select 1 from # where 姓名=t.姓名 and 日期>t.日期)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select distinct name from table;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT TOP 1 ...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询