题解 | #查找后排序#
查找后排序
https://www.nowcoder.com/practice/cd4c5f3a64b4411eb4810e28afed6f54
select device_id,age from user_profile order by age asc;
1order by是对结果进行排序
2asc表示升序,desc表示为降序
查找后排序
https://www.nowcoder.com/practice/cd4c5f3a64b4411eb4810e28afed6f54
select device_id,age from user_profile order by age asc;
1order by是对结果进行排序
2asc表示升序,desc表示为降序
相关推荐