MySQL update嵌套
当我们想从MySQL中的表table1中取出id=5的列col1(例如: 博客当前访问量)中的数据d1, 并将table1的属性p1更新为d1+1的时候, 我们也许会想到使用这条SQL语句
update table1 set col1=(select col1 from a where id=5)+1 where id=5;
但在 MySQL 命令列工具中传回:
ERROR 1093 (HY000): You can't specify target table 'forum_members' for update in FROM clause
原来数据库都有这个规定:不允许UPDATE的子查询里面有被UPDATE的那个表。也就是说update a 的时候 不能在后面select col from a ,如果是不同表操作是没有问题的。想到一个解决方法:
UPDATE table1 a
INNER JOIN table1 b ON b.id=1 AND a.id=b.id
SET a.col=b.col+1
相关推荐
王艺强 2020-11-17
herohope 2020-07-18
mrandy 2020-07-04
Jaystrong 2020-06-27
debugjoker 2020-06-17
好记忆也需烂 2020-04-21
achiverhai 2020-04-16
vivenwan 2020-04-08
要啥自行车一把梭 2020-03-20
Accpcjg 2020-02-22
anchongnanzi 2020-09-21
84296033 2020-09-15
heimu 2020-08-02
89921334 2020-06-26
Linkaibin 2020-06-14
fanhuasijin 2020-06-14
Laxcus大数据技术 2020-06-13
hanshangzhi 2020-06-10