1. 程式人生 > >MySQL---統計表a中資料的總條數、統計表a中“狀態”欄位為“1”的條數

MySQL---統計表a中資料的總條數、統計表a中“狀態”欄位為“1”的條數

1、統計表a中資料的總條數:

select count(id) from a


2、統計表a中“狀態”欄位為“1”的條數:

select count(id)
from a
where fk_statusid=1