日期:2014-05-19  浏览次数:20457 次

请教高人,在SQL中能否实现这样的功能?
有三条完全一样的记录,只保留一条,如何用SQL实现呢?

------解决方案--------------------
select id=identity(int,1,1) , * into test from tb

select * from test where id in (select min(id) id from test)