请教高人,在SQL中能否实现这样的功能?有三条完全一样的记录,只保留一条,如何用SQL实现呢?[解决办法]select
请教高人,在SQL中能否实现这样的功能?
有三条完全一样的记录,只保留一条,如何用SQL实现呢?
[解决办法]
select id=identity(int,1,1) , * into test from tb
select * from test where id in (select min(id) id from test)
请教高人,在SQL中能否实现这样的功能?
有三条完全一样的记录,只保留一条,如何用SQL实现呢?
[解决办法]
select id=identity(int,1,1) , * into test from tb
select * from test where id in (select min(id) id from test)