-
What will be the output of a query given below?
SELECT Employee_id, FirstName, LastName
FROM person;
-
- Show all columns except (Employee_id, FirstName, LastName)
- Show all rows
- Show only columns (Employee_id, FirstName, LastName)
- Show only columns (Employee_id, FirstName, LastName) and rows related to these columns
- None of these
Correct Option: D
“SELECT” clause is used to show all rows and columns that are mention with the query.