1. select count(*) from table; //統計元組個數 2. select count(列名) from table; //統計一列中值的個數 3. select count(*) from table where 欄位 = ""; //符合該條件的記錄總數 4. sql_c ...
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+"%'";
}