2022-09-07 1、Mysql中的清屏: system clear 一般的清屏命令:clear 聚合函數 2、查詢某個表中某個欄位的值的個數(使用count) 以“students”表(欄位有id,name,age,gender,height)為例: select count(id) from ...
2022-09-07
1、Mysql中的清屏:
system clear
一般的清屏命令:clear
聚合函數
2、查詢某個表中某個欄位的值的個數(使用count)
以“students”表(欄位有id,name,age,gender,height)為例:
select count(id) from students;
說明:select count(欄位名) from 表名;
(2)統計表中的數據條數
select count(*) from 表名;
3、查詢在約束條件下某個欄位中的最大值
以“students”表為例:
select max(id) from students where gender = 'girl';
4、查詢在約束條件下某個欄位值的總和
以“students”表為例:
select sum(height) from students where gender = 'boy';
說明:select sum(欄位名) from 表名 where 約束條件;
5、查詢在約束條件下某個欄位值的平均值
以“students”表為例:
select avg(height) from students where gender = 'boy';
說明:格式:select avg(欄位名) from 表名 where 約束條件;
註意:如果統計某個欄位中的值有NULL,則會跳過。所以,優化的語句為:
select avg(ifnull(height,0)) from students where gender = 'boy';
說明:如果為空,則設為0.