You are sorting data in a table in you SELECT statement in descending order.
The column you are sorting on contains NULL records, where will the NULL record appears?
A.At the beginning of the list.
B.At the end of the list.
C.In the middle of the list.
D.At the same location they are listed in the unordered table.
Answer: A
Explanation:
When sorting a column with null values in ascending order then the oracle places the Null values
at the end of the list if the sorting is in descending order the oracle places the null values at the
start of the list.
The column you are sorting on contains NULL records, where will the NULL record appears?
A.At the beginning of the list.
B.At the end of the list.
C.In the middle of the list.
D.At the same location they are listed in the unordered table.
Answer: A
Explanation:
When sorting a column with null values in ascending order then the oracle places the Null values
at the end of the list if the sorting is in descending order the oracle places the null values at the
start of the list.
Comments