Preface The count function is used to count the records in a table or array. count(*) returns the number of retrieved rows, regardless of whether it contains NULL values. I feel like everyone is discussing the difference in count recently, so I’ll write it down as well: Welcome to leave a message to discuss. Without further ado, let’s take a look at the detailed introduction. 1. Table structure: dba_jingjing@3306>[rds_test]>CREATE TABLE `test_count` ( -> `c1` varchar(10) DEFAULT NULL, -> `c2` varchar(10) DEFAULT NULL, -> KEY `idx_c1` (`c1`) -> ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Query OK, 0 rows affected (0.11 sec) 2. Insert test data: dba_jingjing@3306>[rds_test]>insert into test_count values(1,10); Query OK, 1 row affected (0.03 sec) dba_jingjing@3306>[rds_test]>insert into test_count values(abc,null); ERROR 1054 (42S22): Unknown column 'abc' in 'field list' dba_jingjing@3306>[rds_test]>insert into test_count values('abc',null); Query OK, 1 row affected (0.04 sec) dba_jingjing@3306>[rds_test]>insert into test_count values(null,null); Query OK, 1 row affected (0.04 sec) dba_jingjing@3306>[rds_test]>insert into test_count values('368rhf8fj',null); Query OK, 1 row affected (0.03 sec) dba_jingjing@3306>[rds_test]>select * from test_count; +-----------+------+ | c1 | c2 | +-----------+------+ | 1 | 10 | | abc | NULL | | NULL | NULL | | 368rhf8fj | NULL | +-----------+------+ 4 rows in set (0.00 sec) test: dba_jingjing@3306>[rds_test]>select count(*) from test_count; +----------+ | count(*) | +----------+ | 4 | +----------+ 1 row in set (0.00 sec) EXPLAIN: { "query_block": { "select_id": 1, "message": "Select tables optimized away" 1 row in set, 1 warning (0.00 sec) dba_jingjing@3306>[rds_test]>select count(1) from test_count; +----------+ | count(1) | +----------+ | 4 | +----------+ 1 row in set (0.00 sec) EXPLAIN: { "query_block": { "select_id": 1, "message": "Select tables optimized away" 1 row in set, 1 warning (0.00 sec) dba_jingjing@3306>[rds_test]>select count(c1) from test_count; +-----------+ | count(c1) | +-----------+ | 3 | +-----------+ 1 row in set (0.00 sec) "table": { "table_name": "test1", "access_type": "index", "key": "idx_c1", "used_key_parts": [ "c1" ], "key_length": "33", So why is "key_length": "33" 33? What is a secondary index? See next section There is no difference between count(*) and count(1), but there is a difference between count(col) The execution plan has characteristics: it can be seen that it does not query indexes and tables, and sometimes select tables optimized away will appear, which will not query tables and will be very fast. Extra sometimes displays "Select tables optimized away", which means there is nothing better to optimize.
---MySQL's meaning of "Select tables optimized away" is not "nothing better can be optimized". The key point in the official explanation is: So, a reasonable explanation is: 1 The data is already in memory and can be read directly; 2 Data can be considered as a result of a calculation, such as the value of a function or expression; 3 Once the query result is "predicted" by the optimizer, the result can be obtained without execution, so there is "no need to perform the select". Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Linux debugging tools that developers and operators must look at [Recommended]
>>: Let's talk about what JavaScript's URL object is
Table of contents 1. Download the system image fi...
Related articles: Beginners learn some HTML tags ...
Table of contents Preparation Install VMware Work...
mysql 8.0.22 winx64 installation and configuratio...
This is a test of the interviewee's basic kno...
The previous article on Docker mentioned the cons...
Start the mysql container in docekr Use command: ...
CSS (Cascading Style Sheet) is used to beautify H...
Installation & Configuration The official web...
Slow log query function The main function of slow...
01. Command Overview The gcc command uses the C/C...
Usage of alter command in mysql to edit table str...
This article example shares the specific code of ...
I encountered a problem when I turned on my lapto...
In CentOS7, when we install MySQL, MariaDB will b...