在update语句中使用子查询

在update 中的 where 子句中使用子查询:

UPDATE mg_page_log as a  SET  page_num=1 WHERE id in( SELECT id  from mg_page_log WHERE id < 100 GROUP BY visit_id)

会报:

You can't specify target table 'a' for update in FROM clause 错误

所以正确的是:

UPDATE mg_page_log as a ,( SELECT id  from mg_page_log WHERE id < 100 GROUP BY visit_id)as b SET  page_num=1 WHERE a.id = b.id

原文地址:https://www.cnblogs.com/dubox/p/5961444.html