CBSE Class 12 Informatics Practices Question 70 of 79

Database Query using SQL — Question 1

Back to all questions
1
Question

Question 1

The ORDER BY clause combines all those records that have identical values in a particular field or a group of fields.

Answer

False

Reason — The SQL ORDER BY clause is used to sort data in ascending or descending order based on one or more columns. To group records with identical values, the GROUP BY clause is used.