A DML command that inserts new data into a recordset.
Syntax: Here is generic SQL syntax of INSERT INTO command to insert data into MySQL table:
INSERT INTO table_name ( field1, field2,...fieldN ) VALUES ( value1, value2,...valueN ); To insert string data types it is required to keep all the values into double or single quote, for example:- "value".
Source : TutorialSpoint.com