Refer to the exhibit. Which option will correctly display the user names and email addresses of users in this table?
- SELECT User
FROM user_id, user_name, user_email - SELECT user_id, user_name, user_email
FROM User - SELECT User
WHERE user_id, user_name, user_email - SELECT user_id, user_name, user_email
WHERE User
Explanation & Hint:
The SELECT command is used to request the specified fields using commas to separate fields. Therefore, the correct answer is:
|