Here is a general form of insert command:
insert into table (column1, column2) values (value1, value2);
The insert statement inserts new row into an existing table. The table is the name of the table into which we want to insert data, column1 and column2 are column names and value1, value2 are values for the respective columns.
Full story »