06 2019 档案
SQL 删除重复记录,并保留其中一条
摘要:--查找表中多余的重复记录select * from code_xz where code in (select code from code_xz group by code having count(1)>1) --删除表中多余的重复记录,只留有pk_uid最小的记录delete from co 阅读全文
posted @ 2019-06-03 21:31 janehlp 阅读(6282) 评论(0) 推荐(0)