Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.84 KB | None | 0 0
  1. mysql> explain SELECT ban_ip, ban_userid, ban_email, ban_exclude, ban_give_reason, ban_end
  2.     ->                         FROM phpbb_banlist
  3.     ->                         WHERE ban_email = '' AND (ban_userid = 6974666 OR ban_ip <> '');
  4. +----+-------------+---------------+------+---------------------------+-----------+---------+-------+------+-------------+
  5. | id | select_type | table         | type | possible_keys             | key       | key_len | ref   | rows | Extra       |
  6. +----+-------------+---------------+------+---------------------------+-----------+---------+-------+------+-------------+
  7. |  1 | SIMPLE      | phpbb_banlist | ref  | ban_user,ban_email,ban_ip | ban_email | 302     | const | 2032 | Using where |
  8. +----+-------------+---------------+------+---------------------------+-----------+---------+-------+------+-------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement