Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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'))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

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' ;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...