INSERT INTO - Adding Records1 / 10
The INSERT INTO command is how you insert a new record into a database table. Try:
Yes, there are other ways to do this, but this method is best practice and is optimized for learning.
INSERT INTO cities (city_id, city_name, country, population_millions) VALUES (6, 'Lisbon', 'Portugal', 0.5);Yes, there are other ways to do this, but this method is best practice and is optimized for learning.
Ctrl+Enter to submit