INSERT Command

 

 INSERT Command

Description:
The INSERT command is used to add new records into a table.

Syntax:

INSERT INTO table_name (column1, column2)
VALUES (value1, value2);

Example:

INSERT INTO student(id, name)
VALUES (1, 'Afsar');



Comments

Popular posts from this blog

Important MySQL Commands