Database Fundamentals — Question 55
You are writing an SQL statement to retrieve rows from a table.
Which data manipulation language (DML) command should you use?
Answer options
- A. READ
- B. SELECT
- C. OUTPUT
- D. GET
Correct answer: B
Explanation
The correct answer is B, SELECT, as it is the standard SQL command used to retrieve data from a database table. The other options, READ, OUTPUT, and GET, are not valid SQL commands for this purpose.