Computer Science

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

SQL Queries

2 Likes

Answer

All

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

Answered By

1 Like


Related Questions