上一题是一个条件,这一题是多个排序条件,直接是在order by关键字后加上列和排序的规则。

select device_id, gpa, age from user_profile order by gpa asc, age asc;