Advertisement
n1xman

Untitled

Jan 24th, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.61 KB | None | 0 0
  1. MariaDB [wordpress]> show index from wp_spectrom_sync_log;
  2. +----------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
  3. | Table                | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
  4. +----------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
  5. | wp_spectrom_sync_log |          0 | PRIMARY  |            1 | id          | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
  6. | wp_spectrom_sync_log |          1 | post_id  |            1 | post_id     | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
  7. +----------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
  8. 2 rows in set (0.00 sec)
  9.  
  10. MariaDB [wordpress]> show index from wp_spectrom_sync;
  11. +------------------+------------+-------------------+--------------+-------------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
  12. | Table            | Non_unique | Key_name          | Seq_in_index | Column_name       | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
  13. +------------------+------------+-------------------+--------------+-------------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
  14. | wp_spectrom_sync |          0 | PRIMARY           |            1 | sync_id           | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
  15. | wp_spectrom_sync |          1 | source_content_id |            1 | source_content_id | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
  16. | wp_spectrom_sync |          1 | target_content_id |            1 | target_content_id | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
  17. | wp_spectrom_sync |          1 | content_type      |            1 | content_type      | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
  18. +------------------+------------+-------------------+--------------+-------------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
  19. 4 rows in set (0.00 sec)
  20.  
  21. MariaDB [wordpress]>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement