Guest User

Untitled

a guest
Jan 23rd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. mysql> explain select id from amenities where id=2;
  2. +----+-------------+-----------+-------+---------------+---------+---------+-------+------+-------------+
  3. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  4. +----+-------------+-----------+-------+---------------+---------+---------+-------+------+-------------+
  5. | 1 | SIMPLE | amenities | const | PRIMARY | PRIMARY | 4 | const | 1 | Using index |
  6. +----+-------------+-----------+-------+---------------+---------+---------+-------+------+-------------+
  7. 1 row in set (0.00 sec)
Add Comment
Please, Sign In to add comment