OCP 11g认证题库详解:1Z0-051-068题
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询OCP 11g认证题库详解:1Z0-051-068题,完整题库请点击这里联系老师咨询了解
68. Which statement is true regarding the default behavior of the ORDER BY clause?
A. In a character sort, the values are case- sensitive.
B. NULL values are not considered at all by the sort operation.
C. Only those columns that are specified in the SELECT list can be used in the ORDER BY clause.
D. Numeric values are displayed from the maximum to the minimum value if they have decimal positions.
Answer: A
试题解析:
A对,在字符排序中,是区分大小写的。
B错,对于升序排序,空值显示在最后,对于降序排序,则显示在最前面。即NULL是被考虑的
C错,可以指定不在select列中的字段来排序。
D错,不管是否小数,都是按照数值的大小来升序或降序排列。