mysql使用語法2

软工李文轩發表於2024-11-23

排序查詢 select DISTINCT * from stu order by age asc,math desc;(在stu表中按照年齡升序排列(預設為升序排列),如果年齡一樣,按照數學成績降序排列)
分組查詢 select DISTINCT 聚合函式名(列名) from stu
聚合函式 count(統計數量)
max (最大值)
min(最小值)
sum(求和)
avg(平均值)

相關文章