Tell us what’s happening:
Stuck in this step, Whatever i do the parser is not letting is pass. have tried copying the solution from hints and pasting in the terminal, that too didn’t work.
Adding rows one at a time is quite tedious. Here’s an example of how you could have added the previous three rows at once:
INSERT INTO characters(name, homeland, favorite_color)
VALUES(‘Mario’, ‘Mushroom Kingdom’, ‘Red’),
(‘Luigi’, ‘Mushroom Kingdom’, ‘Green’),
(‘Peach’, ‘Mushroom Kingdom’, ‘Pink’);
Add two more rows.
Your code so far
INSERT INTO characters(name, homeland, favorite_color) VALUES(‘Toadstool’, ‘Mushroom Kingdom’, ‘Red’), (‘Bowser’, ‘Mushroom Kingdom’, ‘Green’);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36
Challenge Information:
Learn Relational Databases by Building a Database of Video Game Characters - Build a Database of Video Game Characters