>데이터 베이스 >MySQL 튜토리얼 >MySQL에서 'FROM 절에서 업데이트할 대상 테이블을 지정할 수 없습니다' 오류를 해결하는 방법은 무엇입니까?

MySQL에서 'FROM 절에서 업데이트할 대상 테이블을 지정할 수 없습니다' 오류를 해결하는 방법은 무엇입니까?

Linda Hamilton
Linda Hamilton원래의
2025-01-22 19:52:10515검색

How to Solve the

MySQL "FROM 절에서 업데이트할 대상 테이블을 지정할 수 없습니다." 오류 해결

MySQL UPDATE 쿼리 중에 "FROM 절에서 업데이트할 대상 테이블을 지정할 수 없습니다." 오류가 발생합니까? 이는 일반적으로 하위 쿼리 내에서 업데이트되는 테이블을 참조하려고 할 때 발생합니다. 일반적인 시나리오를 살펴보겠습니다.

<code class="language-sql">UPDATE pers P
SET P.gehalt = P.gehalt * 1.05
WHERE (P.chefID IS NOT NULL
OR gehalt <p>...This approach fails because MySQL prohibits referencing the updated table (pers) inside its own subquery.</p><h2>The Solution: Employing a Temporary Table (or JOIN)</h2><p>The solution involves creating a temporary representation of the table data to avoid directly referencing the `pers` table in the `WHERE` clause.  Here's how:</p>UPDATE pers P
SET P.gehalt = P.gehalt * 1.05
WHERE (P.chefID IS NOT NULL
OR gehalt <p>This method uses a `SELECT` statement to create a temporary dataset.  This allows the `WHERE` clause to reference the data without directly referencing the `pers` table being updated.</p><h2>Alternative: Using a JOIN</h2><p>Another effective method is to use a `JOIN` instead of a subquery:</p>UPDATE pers p
INNER JOIN (SELECT chefID, gehalt FROM pers) AS temp ON p.chefID = temp.chefID AND p.gehalt = temp.gehalt
SET p.gehalt = p.gehalt * 1.05
WHERE p.chefID IS NOT NULL OR p.gehalt <p>This approach achieves the same result by joining the `pers` table with itself (aliased as `temp`), thereby avoiding the restriction.</p><h2>Best Practices</h2><p>While using `SELECT *` simplifies the example, selecting only necessary columns and adding a `WHERE` clause to your subquery or `JOIN` significantly improves performance.  Always prioritize efficiency in your database operations.</p></code>

이렇게 하면 문제가 명확해지고 대체 솔루션이 제공됩니다. 최적의 성능을 위해서는 꼭 필요한 열만 선택하세요.

위 내용은 MySQL에서 'FROM 절에서 업데이트할 대상 테이블을 지정할 수 없습니다' 오류를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.