Page 1 of 1

Which of the following SQL statements will select the fields name and address from the contacts table?

Posted: Sat Jul 23, 2022 7:42 pm
by answerhappygod
Which of the following SQL statements will select the fields name and address from the contacts table?

A. SELECT (name, address) FROM contacts;
B. SELECT (name address) FROM contacts;
C. SELECT name, address FROM contacts;
D. SELECT name address FROM contacts;