Created
July 1, 2019 09:02
-
-
Save simonrenoult/fc3acb6d55855860308118a8199cb352 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> EXPLAIN SELECT SQL_NO_CACHE * FROM articles IGNORE INDEX(PRIMARY) WHERE article_id = 150000; | |
+----+-------------+----------+------------+------+---------------+------+---------+------+--------+----------+-------------+ | |
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra | | |
+----+-------------+----------+------------+------+---------------+------+---------+------+--------+----------+-------------+ | |
| 1 | SIMPLE | articles | NULL | ALL | NULL | NULL | NULL | NULL | 996520 | 10.00 | Using where | | |
+----+-------------+----------+------------+------+---------------+------+---------+------+--------+----------+-------------+ | |
1 row in set, 2 warnings (0.00 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment