News

-- Example: Insert a new employee into the 'Employees' table. -- Syntax: INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); INSERT INTO ...
1.INSERT INTO: This is used to add records into a relation. These are three type of INSERT INTO queries which are as A)Inserting a single record Syntax: INSERTINTO ...