SHARE
TWEET

Untitled

a guest Oct 12th, 2011 36 Never
  1. mysql> SHOW INDEX FROM posts;
  2. +-------+------------+------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+
  3. | Table | Non_unique | Key_name   | Seq_in_index | Column_name  | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
  4. +-------+------------+------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+
  5. | posts |          0 | PRIMARY    |            1 | pid          | A         |     2798066 |     NULL | NULL   |      | BTREE      |         |
  6. | posts |          1 | topic_id   |            1 | topic_id     | A         |       77724 |     NULL | NULL   |      | BTREE      |         |
  7. | posts |          1 | topic_id   |            2 | queued       | A         |       79944 |     NULL | NULL   |      | BTREE      |         |
  8. | posts |          1 | topic_id   |            3 | pid          | A         |     2798066 |     NULL | NULL   |      | BTREE      |         |
  9. | posts |          1 | topic_id   |            4 | post_date    | A         |     2798066 |     NULL | NULL   | YES  | BTREE      |         |
  10. | posts |          1 | post_date  |            1 | post_date    | A         |     2798066 |     NULL | NULL   | YES  | BTREE      |         |
  11. | posts |          1 | ip_address |            1 | ip_address   | A         |      121655 |     NULL | NULL   |      | BTREE      |         |
  12. | posts |          1 | post_key   |            1 | post_key     | A         |      399723 |     NULL | NULL   |      | BTREE      |         |
  13. | posts |          1 | author_id  |            1 | author_id    | A         |        8939 |     NULL | NULL   |      | BTREE      |         |
  14. | posts |          1 | author_id  |            2 | post_date    | A         |     2798066 |     NULL | NULL   | YES  | BTREE      |         |
  15. | posts |          1 | author_id  |            3 | queued       | A         |     2798066 |     NULL | NULL   |      | BTREE      |         |
  16. | posts |          1 | queued     |            1 | queued       | A         |           3 |     NULL | NULL   |      | BTREE      |         |
  17. | posts |          1 | queued     |            2 | pdelete_time | A         |           5 |     NULL | NULL   |      | BTREE      |         |
  18. | posts |          1 | post       |            1 | post         | NULL      |           1 |     NULL | NULL   | YES  | FULLTEXT   |         |
  19. +-------+------------+------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+
  20. 14 rows in set (0.01 sec)
  21.  
RAW Paste Data
Top