-
What is ‘Employee’ in the following statement?
SELECT name FROM Employee;
-
- column name
- table name
- database name
- row name
- None of these
Correct Option: B
The SELECT clause is used to retrieve information from some specified tables. It follows a specified format for information retrieval. Here, ‘name ’ can be a column name. It must be present in the table ‘Employee’.