CBSE Class 12 Computer Science Question 54 of 78

Simple Queries in SQL — Question 8

Back to all questions
8
Question

Question 8

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

SELECT * FROM employee
  1. DML
  2. DDL
  3. DCL
  4. Integrity constraint
Answer

DML

Reason — Data Manipulation Language (DML) statements are used to retrieve, insert, update, and delete data in a database. The 'SELECT' statement, in particular, is used to retrieve data from one or more tables.