KnowledgeBoat Logo

Computer Science

Consider the following SQL statement. What type of statement is this ?

INSERT INTO instructor VALUES (10211, 'Shreya' , 'Biology', 66000 ) ;
  1. Procedure
  2. DML
  3. DCL
  4. DDL

DDL & DML

1 Like

Answer

DML

Reason — The above SQL statement is Data Manipulation Language (DML) statement. DML statements are used to access and manipulate data in tables. The DML commands include SELECT, LOCK TABLE, UPDATE, INSERT INTO, DELETE. In this case, the INSERT INTO statement is used to insert a new row of data into the instructor table.

Answered By

1 Like


Related Questions