(i) Insert command (ii) Select command (iii) Delete command (iv) DCL command
Syntax:
INSERT INTO (col1, col2…)
VALUES (val1, val2);
(ii) SELECT Command: It is used to query or retrieve data from a table in the database.
Syntax:
SELECT column_list FROM table_name WHERE ;
(iii) DELETE Command: To discard unwanted data from a database, the delete command is used.
Syntax:
DELETE FROM WHERE ;
(iv) DCL Command: These commands are used to assign security levels in a database that involves multiple user setups. They are used to grant defined roles and access privileges to the users.
e.g. GRANT and REVOKE command.
