Brief about Insert Statement with an example.
INSERT: The Insert statement is used to insert values as rows in a table.
Syntax:INSERT INTO Table_name values (value1, value2,…);
INSERT INTO Table_name (column1, colum2…) values (value1, value2,…);
ExampleA table customer has fields customer id, customer name, customer salary.
INSERT INTO customer (1,John,20000);