码迷,mamicode.com
首页 > 其他好文 > 详细

You can't specify target table 'charge' for update in FROM clause

时间:2016-06-11 10:24:44      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

mysql中不能这么用。 (等待mysql升级吧)错误提示就是说,不能先select出同一表中的某些值,再update这个表(在同一语句中) 替 换方 案: create table tmp as select min(id) as col1 from blur_article group by title;delete from blur_article where id not in (select col1 from tmp); drop table tmp; 已经测试,尽请使用

You can't specify target table 'charge' for update in FROM clause

标签:

原文地址:http://www.cnblogs.com/toSeeMyDream/p/5574767.html

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