Last active
August 29, 2016 13:02
-
-
Save tistaharahap/f1736c4c608dae1b3e2b67ae03848e98 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
MariaDB [fun]> EXPLAIN SELECT * FROM users WHERE first_name = 'Martin' AND last_name = 'David'; | |
+------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | |
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | | |
+------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | |
| 1 | SIMPLE | users | ALL | NULL | NULL | NULL | NULL | 10 | Using where | | |
+------+-------------+-------+------+---------------+------+---------+------+------+-------------+ | |
1 row in set (0.00 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment