Can I get some help with Challenge: Clothing alterations?
Step one worked just fine for me, but step two keeps saying that I have a syntax error. Help!
ALTER TABLE clothes ADD price INTEGER;
SELECT * FROM clothes
UPDATE clothes SET price = 10 WHERE id=1;
UPDATE clothes SET price = 20 WHERE id=2;
UPDATE clothes SET price = 30 WHERE id=3;
SELECT * FROM clothes;
Please sign in to leave a comment.