Mar 13, 2003 #1 jsgoober Programmer Joined Jan 3, 2002 Messages 12 Location US I am new with MySQL and would like to know a way to show/display all of my indexes within a database. Or at least to show whether a table has indexes or not. Thanks for the help. Jay
I am new with MySQL and would like to know a way to show/display all of my indexes within a database. Or at least to show whether a table has indexes or not. Thanks for the help. Jay
Mar 13, 2003 1 #2 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location US One way is to issue the query: show index from tablename For more information: http://www.mysql.com/doc/en/SHOW.html Want the best answers? Ask the best questions: http://www.catb.org/~esr/faqs/smart-questions.htmlTANSTAAFL! Upvote 0 Downvote
One way is to issue the query: show index from tablename For more information: http://www.mysql.com/doc/en/SHOW.html Want the best answers? Ask the best questions: http://www.catb.org/~esr/faqs/smart-questions.htmlTANSTAAFL!
Mar 13, 2003 Thread starter #3 jsgoober Programmer Joined Jan 3, 2002 Messages 12 Location US Thank you Sleipnir214 + Upvote 0 Downvote