Question : Consider the following SQL Statement. What type of statement is this ?
INSERT INTO instructor VALUES (10211, ‘SHREYA’ , ‘BIOLOGY’, 69000);
Option 1: Procedure
Option 2: DML
Option 3: DCL
Option 4: DDL
Correct Answer: DML
Solution : The term "Data Manipulation Language" is an acronym. represents a group of computer languages that are specifically used to alter databases. Examples include CRUD operations, which create, read, update, and remove data. use the verbs INSERT, SELECT, UPDATE, and DELETE.
Hence the correct answer is option 2.