Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

mysql - You can't specify target table 'inventory' for update in FROM clause

Can you help me to solve this problem. I just want to update the price that does not include the other collection name

UPDATE inventory SET price = '450' WHERE id IN (SELECT id FROM inventory WHERE collection_name NOT IN ('C1','C2','C3','C4'))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

MySQL doesn't allow this construct. Instead, use a JOIN. Assuming id is unique:

UPDATE inventory i JOIN
       (SELECT i2.id
        FROM inventory i2
        WHERE i2.collection_name NOT IN ('C1', 'C2', 'C3', 'C4')
       ) i2
       ON i.id = i2.id
    SET i.price = '450' ;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...