MariaDB中COUNT()函数的作用及用法技巧是什么
Admin 2022-06-28 群英技术资讯 506 次浏览
在MariaDB数据库中,COUNT()
函数用于返回表达式的计数/行数。
语法:
SELECT COUNT(aggregate_expression)
FROM tables
[WHERE conditions];
注:
COUNT()
函数只计算NOT NULL
值。
示例:
假设有一个students
表,有以下数据:
MariaDB [testdb]> select * from students;
+------------+--------------+-----------------+----------------+
| student_id | student_name | student_address | admission_date |
+------------+--------------+-----------------+----------------+
| 1 | Maxsu | Haikou | 2017-01-07 |
| 3 | JMaster | Beijing | 2016-05-07 |
| 4 | Mahesh | Guangzhou | 2016-06-07 |
| 5 | Kobe | Shanghai | 2016-02-07 |
| 6 | Blaba | Shengzhen | 2016-08-07 |
| 7 | Maxsu | Sanya | 2017-08-08 |
| 8 | Maxsu | Haikou | 2015-11-17 |
+------------+--------------+-----------------+----------------+
7 rows in set (0.00 sec)
从students
表中统计student_id
:
SELECT COUNT(student_id) FROM Students;
-- 或者
SELECT COUNT(*) FROM Students;
执行上面查询语句,得到以下结果 -
MariaDB [testdb]> SELECT COUNT(student_id) FROM Students;
+-------------------+
| COUNT(student_id) |
+-------------------+
| 7 |
+-------------------+
1 row in set (0.07 sec)
统计student_name
是Maxsu
或Kobe
的学生人数。参考以下查询语句 -
SELECT COUNT(*) AS "Number of Students"
FROM Students
WHERE student_name in ('Maxsu', 'Kobe');
执行上面查询语句,得到以下结果 -
MariaDB [testdb]> SELECT COUNT(*) AS "Number of Students"
-> FROM Students
-> WHERE student_name in ('Maxsu', 'Kobe');
+--------------------+
| Number of Students |
+--------------------+
| 4 |
+--------------------+
1 row in set (0.00 sec)
DISTINCT
子句与COUNT()
函数一起使用以防止重复计数。它只包含原始记录。
SELECT COUNT(DISTINCT student_name) AS "Number of Unique names"
FROM Students
WHERE student_name in ('Maxsu', 'Kobe');
执行上面查询语句,得到以下结果 -
MariaDB [testdb]> SELECT COUNT(DISTINCT student_name) AS "Number of Unique names"
-> FROM Students
-> WHERE student_name in ('Maxsu', 'Kobe');
+------------------------+
| Number of Unique names |
+------------------------+
| 2 |
+------------------------+
1 row in set (0.08 sec)
从查询结果中可以看到,比上一个示例少了两行。
为了更好地演示COUNT()
函数对NULL
值的处理,这里再插入两条记录 -
-- 修改表字段接受NULL默认值
ALTER TABLE students CHANGE student_address student_address varchar(32) default NULL;
-- 插入第1行
INSERT INTO students
(student_name, student_address, admission_date)
VALUES('Himin',NULL,'2017-01-07 00:00:00');
-- 插入第2行
INSERT INTO students
(student_name, student_address, admission_date)
VALUES('Hiavg',NULL,NULL);
执行上面查询语句,得到以下结果 -
MariaDB [testdb]> select * from students;
+------------+--------------+-----------------+----------------+
| student_id | student_name | student_address | admission_date |
+------------+--------------+-----------------+----------------+
| 1 | Maxsu | Haikou | 2017-01-07 |
| 3 | JMaster | Beijing | 2016-05-07 |
| 4 | Mahesh | Guangzhou | 2016-06-07 |
| 5 | Kobe | Shanghai | 2016-02-07 |
| 6 | Blaba | Shengzhen | 2016-08-07 |
| 7 | Maxsu | Sanya | 2017-08-08 |
| 8 | Maxsu | Haikou | 2015-11-17 |
| 9 | Himin | NULL | 2017-01-07 |
| 10 | Hiavg | NULL | NULL |
+------------+--------------+-----------------+----------------+
9 rows in set (0.00 sec)
现在来看看使用count()
函数来测试对NULL
值的计算效果。
select count(student_address) from students;
执行上面查询语句,得到以下结果 -
MariaDB [testdb]> select count(student_address) from students;
+------------------------+
| count(student_address) |
+------------------------+
| 7 |
+------------------------+
1 row in set (0.00 sec)
可以看到,COUNT(student_address)
函数它并没有统计包含NULL
值的行。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
在之前的讨论和示例中,我们检查了从单个表中检索,或从多个来源检索多个值。 大多数现实世界的数据操作要复杂得多,需要从多个表进行聚合,比较和检索。JOIN允许将两个或多个表合并到单个对象中。 它们通过SELECT,UPDATE和DELETE语句使用。
USE database命令用于选择数据库,如果想在一个数据库上工作,比如:创建表,查询表,更新,创建存储过程等等,那么首先需要选择一个目标数据库。
这篇文章主要介绍MariaDB数据库的外键的相关内容,包括了对外建,外键约束的介绍以及如何创建外键约束,文本具体的示例介绍,对大家学习有一定的参考价值,感兴趣的朋友就继续往下看吧。
这篇文章给大家分享的是MariaDB中order by子句的相关内容。ORDER BY子句是对查询的结果进行排序,小编觉得挺实用的,因此分享给大家做个参考,文中介绍得很详细,有需要的朋友可以参考,接下来就跟随小编一起了解看看吧。
UPDATE命令通过更改值来修改现有字段。 它使用SET子句指定要修改的列,并指定分配的新值。 这些值可以是字段的表达式或默认值。 设置默认值需要使用DEFAULT关键字。 该命令还可以使用WHERE子句来指定更新的条件和/或ORDER BY子句以特定顺序更新。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008