1.建立学生表,建表sql如下: ),age int); 2.插入几条数据,包括id字段值为null的 ,),(,),(,),(),(); 3.我们查询下,可以看到存在id字段为空的值: 4.对学生表按id排序 方法一: select * from student order by -id desc; 方法二: select * from student order by isnull(id),id; 方法三: ); /*(coalesce(id,999999999999)表示id为空时,返回9