Google News
logo
MySQL - Quiz(MCQ)
The clause that can be used to sort string values according to a specific collation is ________
A)
SORT
B)
COLLATE
C)
FILTER
D)
GROUP

Correct Answer :   COLLATE


Explanation : The ‘COLLATE’ operator can be used to sort the string values according to a specific collation. For example, ‘SELECT col FROM tbl ORDER BY col COLLATE latin1_swedish_ci’ sorts by Swedish collation.

Advertisement