Refer to the exhibit. Which option will correctly display the user names and email addresses of users in this table?

- SELECT User
WHERE user_id, user_name, user_email - SELECT User
FROM user_id, user_name, user_email - SELECT user_id, user_name, user_email
FROM User - SELECT user_id, user_name, user_email
WHERE User
Explanation: The SELECT command is used to request the specified fields using commas to separate fields.
The FROM command returns the selection from the table name.
Therefore, the correct answer is:
SELECT user_id, user_name, user_email
FROM User
Related exam: Data Analytics Essentials Course Final Exam
