在mysql中使用count函數的方法:count函數是用于統計表或數組中的記錄,語法:select count(price) from table_name;
count函數作用:
mysql中count函數的作用是用于統計表或數組中的記錄。
count函數語法:
select count(price) from table_name;
參數:
table_name:表示表的名稱。
price:需要統計的記錄。
count函數使用方法:
例:統計text表中值為null的記錄
select count(null) from text;