mysql > EXPLAIN pk_user_id, username from user where pk_user_id = xyz;

+----------+----------
|   rows   | filtered |
+----------+----------+
|    1     |  100.00  |
+----------+-----------

正在使用的索引 .

PRIMARY -- pk_user_id

用户表有大约400万条记录如何通过扫描一行来查找结果?

它是否使用某种 Map 以及如何过滤与行相关?