Home » MYSQL » Select Query » Question
  1. What will be the output of a query given below?
    SELECT *
    FROM Employee;
    1. Show all columns of table “Employee”
    2. Show all rows and columns of table “Employee”
    3. Show all rows of table “Employee”
    4. All of above
    5. None of these
Correct Option: B

“SELECT” clause is used to show all rows or columns.



Your comments will be displayed only after manual approval.