Computer Science

Which of the following sublanguages of SQL is used to query information from the database and to insert tuples into, delete tuples from, and modify tuples in the database ?

  1. DML (Data Manipulation Language)
  2. DDL (Data Definition Language)
  3. Query
  4. Relational Schema

SQL Queries

1 Like

Answer

DML (Data Manipulation Language)

Reason — In SQL, Data Manipulation Language (DML) statements are used to manipulate data in the database. DML statements are used to query information from the database, as well as to insert, delete, and modify tuples (rows) in the database tables.

Answered By

1 Like


Related Questions