Examine the structure of the MEMBERS table:

You execute the SQL statement:
SQL > SELECT member_id, ' ' , first_name, ' ' , last_name "ID FIRSTNAME LASTNAME " FROM members;
What is the outcome?
- It fails because the alias name specified after the column names is invalid.
- It fails because the space specified in single quotation marks after the first two column names is invalid.
- It executes successfully and displays the column details in a single column with only the alias column heading.
- It executes successfully and displays the column details in three separate columns and replaces only the last column heading with the alias.
Reveal Solution Next Question