1. select count(*) from table; //統計元組個數
2. select count(列名) from table; //統計一列中值的個數
3. select count(*) from table where 字段 = ""; //符合該條件的記錄總數
4. sql_count = "select count(*) from article a where 1=1 ";
//這條語句中a就代表article 這張表,後面可以寫a.字段來代表該表的字段,where 1 = 1,就相當於提供了一個where。因為1=1永遠成立。
就可以根據是否需要加條件,在該語句後面加and a.字段 = "", 等等。
例:
sql_count = "select count(*) from article a where 1=1 "; if(!"".equals(title) && title!=null){ sql_count +="and a.a_title like '%"+title+"%'"; }
以上所述是小編給大家介紹的SQL查詢數據庫中符合條件的記錄的總數,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對幫客之家網站的支持!