LPI
102-350 · Question #17
Which of the following SQL statements will select the fields name and address from the contacts table?
The correct answer is C. SELECT name, address FROM contacts. See the full explanation below for the reasoning.
Question
Which of the following SQL statements will select the fields name and address from the contacts table?
Options
- ASELECT (name, address) FROM contacts;
- BSELECT (name address) FROM contacts;
- CSELECT name, address FROM contacts;
- DSELECT name address FROM contacts;
How the community answered
(39 responses)- A13% (5)
- B5% (2)
- C74% (29)
- D8% (3)
Community Discussion
No community discussion yet for this question.