题解 | 查找后多列排序
查找后多列排序
https://www.nowcoder.com/practice/39f74706f8d94d37865a82ffb7ba67d3
select device_id,gpa,age from user_profile order by gpa asc,age asc;
先后顺序 order by
查找后多列排序
https://www.nowcoder.com/practice/39f74706f8d94d37865a82ffb7ba67d3
select device_id,gpa,age from user_profile order by gpa asc,age asc;
先后顺序 order by
相关推荐