ホームページ >データベース >mysql チュートリアル >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 中国語 Web サイトの他の関連記事を参照してください。