mysql 出现You can't specify target table for update in FROM clause错误的解决方法

mysql出现You can’t specify target table for update in FROM clause 这个错误的意思是不能在同一个sql语句中,先select同一个表的某些值,然后再update这个表。 

 

原语句:


update t_users set coins = (coins +1)   where userid=126;

 

 

修改之后的:


update t_users set coins = ( select ub.a from (select (coins+1) a from t_users where userid=126) ub )where userid=126;

 

mysql 出现You can't specify target table for update in FROM clause错误的解决方法

上一篇:Photoshop小技巧 PS文字功能使用窍门


下一篇:mysql索引hash索引和b-tree索引的区别