select count(id) from t_people_info
2、查看数据库表t_people_info中年龄中最小值,需要用到集合函数min(),代码如下:
select min(p_age) from t_people_info
3、查看数据库表t_people_info中年龄中最大值,需要用到集合函数max(),代码如下:
select max(p_age) from t_people_info
4、查看数据库表t_people_info中年龄中平均值,需要用到集合函数avg(),代码如下:
select avg(p_age) from t_people_info
5、若想统计t_people_info中的年龄的总和,用到集合函数sum(),
代码如下:
select sum(p_age) from t_people_info
6、统计数据库表中记录个数,除了使用count(主键)外,可以使用count(1)、count(*)和count(0),
代码如下:
select count(1) from t_people_info
select count(*) from t_people_info
select count(0) from t_people_info
SQL1中查询出全部记录,并且根据id和created_at拼接为新的字段k,在SQL2中过滤出符合条件的记录,并且根据id和created_at拼接为新的字段;最后在SQL3中,根据字段k去查询过滤出符合条件的记录。
结果如下(共有31条记录,其中有几个需要过滤):
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)