MySQL INSERT INTO statement is used to insert records in an existing table.
Syntax:
INSERT INTO table_name ([column_name],[...column_name],...)
VALUES( [column_value],[..column_value]);
Parameter :
table_name Name of the table
column_name Name of the column
column_value Values are ready to be inserted for a column
Reff. : Insert into statement in mysql.
Syntax:
INSERT INTO table_name ([column_name],[...column_name],...)
VALUES( [column_value],[..column_value]);
Parameter :
table_name Name of the table
column_name Name of the column
column_value Values are ready to be inserted for a column
Reff. : Insert into statement in mysql.