1.使用order by 列名 nulls first,将此字段为空的记录排到前面。
2.使用Order by 列名 nulls last,将此字段为空的记录拍到后面。
?
这样当然是可以的:
select * from test where .. order by a desc,b nulls first;
日期:2014-05-16 浏览次数:20623 次
1.使用order by 列名 nulls first,将此字段为空的记录排到前面。
2.使用Order by 列名 nulls last,将此字段为空的记录拍到后面。
?
这样当然是可以的:
select * from test where .. order by a desc,b nulls first;