CBSE Class 12 Informatics Practices Question 67 of 79

MySQL SQL Revision Tour — Question 10

Back to all questions
10
Question

Question 10

Which of the following keywords will you use in the following query to display all the values of the column dept_name ?

SELECT ............... dept_name FROM Company;
  1. All
  2. From
  3. Distinct
  4. Name
Answer

All

Reason — The All keyword is used to display all values of the column.