INSERT The INSERT command is used to add a new row to a table.
INSERT INTO games(yr, city) VALUES (2012,'London') The table is games
The column names are yr and city
Strings in the literal values must be quoted with single quotes.
Example
games
yr city
2000 Sydney
2004 Athens
2008 Beijing
The table games shows the year and the city hosting
the Olympic Games.
You want to add the next Olympic games, in the year 2012, which will be held in London.
The INSERT statement adds a new row to the table:
Results
See also:
What can go wrong
Your INSERT statement may break some database rule such as the unique key requirement.
In this example there is a primary key on year - that means that there may not be two rows with the
same year. If you attempt to add a second row with 2008 for yr then you will get an error.
INSERT INTO games(yr,city) VALUES (2008,'Paris');
SELECT * FROM games;
DROP TABLE games;
CREATE TABLE games(yr INT PRIMARY KEY, city VARCHAR(20));
INSERT INTO games(city,yr) VALUES ('Sydney',2000);
INSERT INTO games(city,yr) VALUES ('Athens',2004);
INSERT INTO games(city,yr) VALUES ('Beijing',2008);
INSERT INTO games(yr,city) VALUES (2008,'Paris');
SELECT * FROM games;
Results