3个回答
展开全部
楼上的语句~是很好的。
不过~mysql不允许在select的同时~又update表~
所以呢~
我建议你建一个临时表~
分2条sql语句来完成~
第一步:把要保留的ID存入临时表
create table temp select Min(iD) ID from A group by Data
第二部:执行删除语句~
delete from A where ID not in (select ID from temp)
希望对你有用。
-------------------------------------------
PS:mysql不支持select into 。
不过~mysql不允许在select的同时~又update表~
所以呢~
我建议你建一个临时表~
分2条sql语句来完成~
第一步:把要保留的ID存入临时表
create table temp select Min(iD) ID from A group by Data
第二部:执行删除语句~
delete from A where ID not in (select ID from temp)
希望对你有用。
-------------------------------------------
PS:mysql不支持select into 。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Delete A where ID not in (select Min(iD) ID from A group by Data)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select min(ID) as ID into #Tmp from #Table group by DATA,ID
select * into #NewTabel from #Table where ID in(select ID from #Tmp)
select * into #NewTabel from #Table where ID in(select ID from #Tmp)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询