SQL查询数据库中符合条件的记录的总数
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+"%'"; }
相关推荐
whyname 2020-08-16
明月清风精进不止 2020-07-05
URML 2020-07-04
CSDN0BLOG 2020-06-21
goodriver 2020-06-17
专注前端开发 2020-10-21
苏康申 2020-11-13
vitasfly 2020-11-12
oraclemch 2020-11-06
liuyang000 2020-09-25
FellowYourHeart 2020-10-05
赵继业 2020-08-17
Seandba 2020-08-16
dbasunny 2020-08-16
拼命工作好好玩 2020-08-15
langyue 2020-08-15
写程序的赵童鞋 2020-08-03