mysql > EXPLAIN pk_user_id, username from user where pk_user_id = xyz;
+----------+----------
| rows | filtered |
+----------+----------+
| 1 | 100.00 |
+----------+-----------
正在使用的索引。
PRIMARY -- pk_user_id
用户表有大约400万条记录它是如何通过扫描一行找到结果的?
它是否使用某种类型的Map,以及如何过滤与行的关系?
暂无答案!
目前还没有任何答案,快来回答吧!