Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

9 multiple answer 4 points in the list below, select all of the dml com…

Question

9 multiple answer 4 points in the list below, select all of the dml commands used in sql. grant revoke update delete insert select

Explanation:

Brief Explanations

DML (Data Manipulation Language) commands in SQL are used to manipulate the data within database tables.

  • GRANT and REVOKE are DCL (Data Control Language) commands used for access control.
  • UPDATE is used to modify existing data in a table.
  • DELETE is used to remove existing records from a table.
  • INSERT is used to add new records into a table.
  • SELECT is used to retrieve data from a database. So UPDATE, DELETE, INSERT, and SELECT are DML commands.

Answer:

C. UPDATE, D. DELETE, E. INSERT, F. SELECT