Database Fundamentals — Question 164
Which command should you use to give a user permission to read the data in a table?
Answer options
- A. ALLOW SELECT
- B. LET READ
- C. PERMIT READ
- D. GRANT SELECT
Correct answer: D
Explanation
The correct answer is D, GRANT SELECT, which is the standard SQL command used to provide a user with the ability to read data from a table. The other options, A, B, and C, are not valid SQL commands for granting permissions and therefore do not achieve the intended result.