oracle空值排到最前面或最后面

1,排在最前面用order by name nulls first;

eg:select * from table t where t.code!='1' order by name nulls first;

2,排在最后面order by name nulls last;

eg:select * from table t where t.code!='1' order by name nulls last;
原文地址:https://www.cnblogs.com/xmm2017/p/13943850.html