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');
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
Post a Comment