98-364 Exam QuestionsBrowse all questions from this exam

98-364 Exam - Question 135


Which of the following are DML commands? Each correct answer represents a complete solution. (Choose all that apply.)

Show Answer
Correct Answer: BCF

Data Manipulation Language (DML) commands are used to manipulate data within the database. The DELETE command is used to remove existing records, the UPDATE command is used to modify existing records, and the INSERT command is used to add new records to the database. SELECT INTO is actually a part of Data Definition Language (DDL) because it creates a new table based on the result set of a SELECT query. ALTER is also a DDL command, used to modify the structure of the database schema. SELECT is a query statement that is read-only and categorized under SQL-data statements, rather than DML.

Discussion

2 comments
Sign in to comment
Anonymous
Jul 28, 2021

la respuesta correcta es BCEF

EshaM
Aug 19, 2021

In SQL, the following statements are used for database manipulation: SELECT … INTO INSERT UPDATE DELETE Each SQL DML statement is a declarative command. Answer E is incorrect. The purely read-only SELECT query statement is classed with the ‘SQL-data’ statements and hence it is considered to be outside of DML.

anuba
Jul 28, 2021

why not e?