Advertisement
Guest User

Untitled

a guest
May 23rd, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. MariaDB:
  2.  
  3. +------+-------------+-------+--------+---------------+---------+---------+------------------------+------+-------------+
  4. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  5. +------+-------------+-------+--------+---------------+---------+---------+------------------------+------+-------------+
  6. | 1 | SIMPLE | t1 | index | NULL | PRIMARY | 4 | NULL | 20 | Using where |
  7. | 1 | SIMPLE | t2 | eq_ref | PRIMARY | PRIMARY | 4 | foo.t1.data_id | 1 | Using where |
  8. +------+-------------+-------+--------+---------------+---------+---------+------------------------+------+-------------+
  9.  
  10. Oracle MySQL:
  11. +----+-------------+-------+--------+---------------+---------+---------+---------------------------+------+-------------+
  12. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  13. +----+-------------+-------+--------+---------------+---------+---------+---------------------------+------+-------------+
  14. | 1 | SIMPLE | t1 | index | NULL | PRIMARY | 4 | NULL | 20 | Using where |
  15. | 1 | SIMPLE | t2 | eq_ref | PRIMARY | PRIMARY | 4 | foo.t1.data_id | 1 | |
  16. +----+-------------+-------+--------+---------------+---------+---------+---------------------------+------+-------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement