如何删除重复行
Table1
ID Date
001 23/02/2009
001 24/02/2009
001 24/02/2009
002 25/02/2009
002 25/02/2009
...
我想从上表中删除重复的行。
预期输出
ID Date
001 23/02/2009
001 24/02/2009
002 25/02/2009
...
需要查询帮助
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不记得从哪里得到它,但我曾经使用这个 SQL 来删除表中的重复项:
Can't remember where I got it, but I used to use this SQL to remove duplicates from a table:
如果你进行谷歌搜索,你会得到很多帮助。
例如
http://support.microsoft.com/kb/139444
http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/
http://www.sql-server-performance.com/2003/delete-duplicates/
If you do google search you will get plenty of help.
E.g.
http://support.microsoft.com/kb/139444
http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/
http://www.sql-server-performance.com/2003/delete-duplicates/