The INSERT command

The INSERT command will add a particular entry to a table in the database:

INSERT INTO table_name (column_name1name1, column_name2name2, column_name3)name3) 
    VALUES ('Terry'Terry Pratchett', 6666, 27.082015)082015) 

This will enter the values provided into the corresponding columns in the table.