Multiple choice technology databases

SELECT * FROM r4r_emp; Above is part of DML in SQL?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

SELECT is a DML (Data Manipulation Language) command in SQL. DML includes commands like SELECT, INSERT, UPDATE, and DELETE that manipulate data stored in tables. The query shown retrieves data from the r4r_emp table, which is a classic DML operation. DDL (Data Definition Language) commands like CREATE, ALTER, DROP modify database structures, not data.

AI explanation

To answer this question, we need to understand the concept of Data Manipulation Language (DML) in SQL.

DML is a subset of SQL that is used to manage and manipulate data within a database. It includes statements such as SELECT, INSERT, UPDATE, and DELETE.

In the given statement, "SELECT * FROM r4r_emp;", it is using the SELECT statement, which is a part of DML. The SELECT statement is used to retrieve data from one or more tables in a database.

Therefore, the correct answer is:

A. True