The INSERT command can be used to insert a single row into a table.
INSERT
INSERT [INTO] table [(column_name), [column_name,]] [VALUES (value_list)]
Inserting a row
INSERT INTO table (column1, column2) VALUES (value1, value2)
There was an error while loading. Please reload this page.