Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. mysql> explain select 1 from przedmiot order by id;
  2. +----+-------------+-----------+-------+---------------+---------+---------+------+------+-------------+
  3. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  4. +----+-------------+-----------+-------+---------------+---------+---------+------+------+-------------+
  5. | 1 | SIMPLE | przedmiot | index | NULL | PRIMARY | 4 | NULL | 6768 | Using index |
  6. +----+-------------+-----------+-------+---------------+---------+---------+------+------+-------------+
  7. 1 row in set (0.00 sec)
  8.  
  9. mysql> explain select 1 from przedmiot;
  10. +----+-------------+-----------+-------+---------------+---------+---------+------+------+-------------+
  11. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  12. +----+-------------+-----------+-------+---------------+---------+---------+------+------+-------------+
  13. | 1 | SIMPLE | przedmiot | index | NULL | PRIMARY | 4 | NULL | 6768 | Using index |
  14. +----+-------------+-----------+-------+---------------+---------+---------+------+------+-------------+
  15. 1 row in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement