Insert query in MySQL

MySQL INSERT In MySQL, the INSERT statement is used to insert a single or multiple records into a table in a database. Syntax: INSERT into table_name(column_1, column_2, … column_n ) VALUES(value1, value2, .. valuen);   Example 1: MySQL INSERT single record insertion: Items table before insertion: ID NAME QUANTITY 1 Electronics 30 2 Sports 45 … Read more