微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

MySQL更新错误1093

这适用于doc_id是主键的表:

select count(*)+1 from doctor where 
exp > (select exp from doctor where doc_id='001');

+------------+
| count(*)+1 |
+------------+
|          2 |
+------------+

但是,当我使用相同的选择查询在表中设置字段时,它会报告以下错误

update doctor set rank=
(  select count(*)+1 from doctor where 
   exp > (select exp from doctor where doc_id='001')
) where doc_id='001';

ERROR 1093 (HY000): You can't specify target table 'doctor' for update 
in FROM clause

我无法理解它正在讨论哪个目标表引用.谁能解释一下?

最佳答案
此限制记录在MySQL manual中:

Currently,you cannot update a table and select from the same table in a subquery.

作为一种变通方法,您可以将子查询包装在另一个查询中并避免该错误

update doctor set rank=
(select rank from (  select count(*)+1 as rank from doctor where 
   exp > (select exp from doctor where doc_id='001')
) as sub_query) where doc_id='001';

原文地址:https://www.jb51.cc/mysql/432981.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐