这是对这个问题的更新,其中我正在试图找出正在发生的事情:
MySQL sometimes erroneously returns 0 for count(*)
我最后接受了答案,因为它确实回答了我提出的问题(“为什么会发生这种情况”),即使它没有回答我真正想知道的问题(“为什么会发生这种情况”) )。 但是我已经设法在后一个问题上稍微缩小了一点,并且认为我可以用一种我不理解和以前从未见过的方式明确地说某些事情是错误的。 / p>
这个问题一直很难调试,因为由于我无法理解的原因,登录数据库会自动修复它。但是,今天我设法在终端中打开MySQL会话时触发有问题的状态。以下是一些查询以及随后的回复:
首先,这是我的表格布局:
mysql> describe forum_posts;
+-----------+------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+------------+------+-----+---------+----------------+
| post_id | int(11) | NO | PRI | NULL | auto_increment |
| thread_id | int(11) | YES | MUL | NULL | |
| forum_id | int(11) | YES | MUL | NULL | |
| user_id | int(11) | YES | MUL | NULL | |
| moderator | tinyint(1) | NO | | 0 | |
| message | mediumtext | YES | MUL | NULL | |
| date | int(11) | NO | MUL | NULL | |
| edited | int(11) | YES | | NULL | |
| deleted | tinyint(1) | YES | MUL | 0 | |
| bbcode | tinyint(1) | NO | | 1 | |
+-----------+------------+------+-----+---------+----------------+
10 rows in set (0.00 sec)
现在,让我们看看给定论坛帖子中有多少帖子:
mysql> SELECT count(post_id) as num FROM `forum_posts` where thread_id=5243;
+-----+
| num |
+-----+
| 195 |
+-----+
1 row in set (0.00 sec)
好的,但我只想要没有设置deleted
标志的论坛帖子:
mysql> SELECT count(post_id) as num FROM `forum_posts` where thread_id=5243 and deleted=0;
+-----+
| num |
+-----+
| 0 |
+-----+
1 row in set (0.06 sec)
mysql> select post_id,deleted from forum_posts where thread_id=5243 and deleted=0;
Empty set (0.06 sec)
好的,让我们双重确认它们实际上并未全部删除:
mysql> select post_id,deleted from forum_posts where thread_id=5243;
+---------+---------+
| post_id | deleted |
+---------+---------+
| 104081 | 0 |
| 104082 | 0 |
[snip]
| 121162 | 0 |
| 121594 | 0 |
+---------+---------+
195 rows in set (0.00 sec)
该表中的每一行都将“已删除”设置为0,但在查询中添加and deleted=0
不会产生任何结果。直到我通过从终端窗口再次登录MySQL打开一个新会话,之后我可以再次正确选择'deleted'为0的行。
究竟是什么?
更新
@ miken32在下面的评论中建议我尝试EXPLAIN SELECT ...
,所以:
mysql> explain select post_id,deleted from forum_posts where thread_id='5243' and deleted=0;
+----+-------------+-------------+-------------+-------------------+-------------------+---------+------+------+--------------------------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------------+-------------+-------------------+-------------------+---------+------+------+--------------------------------------------------------------+
| 1 | SIMPLE | forum_posts | index_merge | thread_id,deleted | thread_id,deleted | 5,2 | NULL | 97 | Using intersect(thread_id,deleted); Using where; Using index |
+----+-------------+-------------+-------------+-------------------+-------------------+---------+------+------+--------------------------------------------------------------+
1 row in set (0.00 sec)
答案 0 :(得分:3)
基于使用FORCE KEY改变查询结果的注释,我们很可能正在处理合并优化器错误。原始查询的EXPLAIN显示优化是通过从已删除的键中选择,然后从post_id键中选择,然后合并结果来完成的。当我们强制绕过该代码时,问题就会消失。
从以下几点开始的步骤:
答案 1 :(得分:0)
驱除守护进程和鬼魂!添加此索引以避免任何“合并”错误:
INDEX(deleted, thread_id) and DROP the key on just deleted
旗帜上的索引几乎总是无用的。这次它比无用还糟糕。
这比FORCE INDEX更便宜,更快捷,更安全。