MySQL 表的約束、數據庫設計及多表查詢

DQL 查詢語句 – 查詢所有數據,使用年齡降序排序 select * from student order by age desc; – 查詢所有數據,在年齡降序排序的基礎上,如果年齡相同再以數學成績升序排序 select * from student order by age desc, math asc; 五個聚合函數 – 查詢年齡大於 20 的總數 select count(*) from
相關文章
相關標籤/搜索