

- Welcome to Geeksww.com
Seeing indexes in a MySQL table
To show indexes on a MySQL table use any of the following commands in a MySQL client:
SHOW INDEX FROM table_name or SHOW INDEX IN table_name
SHOW INDEXES FROM table_name or SHOW INDEXES IN table_name
SHOW KEYS FROM table_name or SHOW KEYS IN table_name
Replace table_name with the actual table name. You can optionally append the following clause at the end of any query above to select the database to use.
FROM db_name or IN db_name
Replace db_name with the database name.
Did this tutorial help a little? How about buy me a cup of coffee?
Please feel free to use the comments form below if you have any questions or need more explanation on anything. I recommend thoroughy testing on a production-like test system first before moving to production.
tags cloud
popular searches
free download for mysql database server 5.1.5, bison, gearman, install cairo, php, java, install mysql, laptop, linux, mysql mysql, mysql, source code, mysql initialization, tools, ubuntu
Similar Tutorials:
- Unique primary keys(PKs) for MySQL using Redis
- Is MySQL 5.6 slower than MySQL 5.5? No, it's faster
- Generating Unique IDs in PHP
- MySQL table_cache, information_schema, and open files limit
- MySQL Query Cache not necessarily a bad thing
Tutorials in 'Database Management Systems > MySQL' (more):
- How to set default values for MySQL JSON columns
- How to delete rows in table when PK is referenced in another table
- Unique primary keys(PKs) for MySQL using Redis
- How to rename MySQL DB by moving tables
- How to set innodb_flush_log_at_timeout in MySQL 5.6?
Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.