How do we query for specific fields?

By separating column names with ,By using ANDBy using *By using +

Correct. When using a SELECT statement, we declare the fields we want in our result set, and separate them using ,. * will give us whole records.

No... when using a SELECT statement, we declare the fields we want in our result set, and separate them using ,.* will give us whole records.