You can't specify target table 'bijie' for update in FROM clause
时间: 2023-12-27 09:01:53 浏览: 58
这个错误通常是因为在UPDATE语句中,FROM子句中指定的表与要更新的表相同,或者在FROM子句中指定的表与要更新的表存在关联。为了解决这个问题,你可以尝试使用子查询来避免在FROM子句中直接指定要更新的表。例如,将UPDATE语句改写为:
UPDATE bijie SET column1 = value1 WHERE id IN (SELECT id FROM bijie WHERE condition);
其中,子查询中的条件必须与要更新的表的条件相同。这样就可以避免在FROM子句中指定要更新的表,从而解决了这个错误。
相关问题
[HY000][1093] You can t specify target table student for update in FROM clause
这个错误是由于MySQL的限制所导致的,当我们在一个UPDATE语句中需要更新的表同时在FROM子句中被引用时,就会出现这个错误。MySQL不允许在同一个语句中更新和查询同一个表。
为了解决这个问题,我们可以使用子查询来避免在同一个语句中同时更新和查询同一个表。具体来说,我们可以将需要更新的表放在子查询中,然后在外层查询中引用这个子查询的结果集来更新需要更新的数据。示例代码如下:
UPDATE student SET score = 90 WHERE id IN (SELECT id FROM (SELECT id FROM student WHERE score < 60) AS t);
在这个例子中,我们需要将学生成绩小于60分的记录的成绩更新为90分。由于我们需要更新的表student同时也在FROM子句中被引用,因此我们使用子查询将需要更新的记录的id取出来,然后在外层查询中更新这些记录的成绩为90分。
You can t specify target table res_device_info for update in FROM clause
This error message usually occurs in SQL when you try to update a table that is also used in the FROM clause of the same query. To resolve this issue, you can use a subquery to update the table instead. Here's an example:
```sql
UPDATE res_device_info
SET column_name = new_value
WHERE device_id IN (
SELECT device_id
FROM res_device_info
WHERE condition
);
```
In this example, you can replace `column_name`, `new_value`, `condition` with the appropriate values for your scenario. Make sure to adjust the subquery's condition to match your requirements.
阅读全文