码迷,mamicode.com
首页 > 数据库 > 详细

醉了,mysql的删除居然变得这么麻烦 delete from table where id in()

时间:2015-01-07 11:03:14      阅读:409      评论:0      收藏:0      [点我收藏+]

标签:mysql

居然要加这么多层,还需要在里面加一个别名才可以。

删除标题重复的旧记录。

delete from theTable where id in
(
	select id from 
	(
		select min(id) id from theTable group by title HAVING count(*)>1
	) ids
) ;


醉了,mysql的删除居然变得这么麻烦 delete from table where id in()

标签:mysql

原文地址:http://blog.csdn.net/miw__/article/details/42487615

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!