Multiple choice technology databases

What does follow after the SQL SELECT clause?

  1. List of columns that will be selected or the * symbol.

  2. The JOIN SQL clause.

  3. The name of the table we are selecting from.

  4. Selects a database

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The SELECT clause is immediately followed by the list of column names to retrieve or the asterisk (*) wildcard for all columns. The FROM clause specifying the table comes after SELECT.