Order by提供意外的结果顺序

时间:2016-09-28 09:50:55

标签: sql

我的查询是:

SELECT id, name, total FROM <table> order by total

这导致下表:

id |  name | total
1  |  Amy  |   
2  |  Xin  |
3  |  Ray  | 13
4  |  Aly  | 7
5  |  Shy  | 3

前2条记录在总列中返回NULL。我应该如何更改我的订单以使&#34;总计&#34;列以数值下面的NULL值降序?

0 个答案:

没有答案