sql排序倒序怎么寫?
sql中排序倒序使用desc關鍵字,一般需要和order by 合用,示例sql語句如下:例如:select * from student order by age desc;
意思是查詢學生表,以學生年紀倒序排列。
排序采用 order by 子句,order by 后面跟上排序字段,排序字段可以放多個,多個采用逗號間隔,order by默認采用升序(asc),如果存在 where 子句,那么 order by 必須放到where 語句后面。
sql排序倒序怎么寫?
sql中排序倒序使用desc關鍵字,一般需要和order by 合用,示例sql語句如下:例如:select * from student order by age desc;
意思是查詢學生表,以學生年紀倒序排列。
排序采用 order by 子句,order by 后面跟上排序字段,排序字段可以放多個,多個采用逗號間隔,order by默認采用升序(asc),如果存在 where 子句,那么 order by 必須放到where 語句后面。