Home » MYSQL » Mysql Setup » Question
  1. What is ‘Employee’ in the following statement?
    SELECT name FROM Employee;
    1. column name
    2. table name
    3. database name
    4. row name
    5. 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’.



Your comments will be displayed only after manual approval.