|
Re: [转载]漫谈oracle中的空值
在order by 语句中,可以用NULL LAST或者NULL FIRST来指定NULL值出现的位置,而NULL LAST是默认值。以下是Oracle文档中的说明:
NULLS FIRST | NULLS LAST
specifies whether returned rows containing null values should appear
first or last in the ordering sequence.
NULLS LAST is the default for ascending order, and NULLS FIRST is the
default for descending order. |
|