List tables which has fulltext index

If you have to get list of tables for specific database which table has FULLTEXT index use following command:

# SELECT TABLE_NAME FROM information_Schema.STATISTICS WHERE table_schema = 'DATABASE_NAME' AND index_type = 'FULLTEXT' ORDER BY index_name;
Example: SELECT TABLE_NAME FROM information_Schema.STATISTICS WHERE table_schema = 'mydatabase AND index_type = 'FULLTEXT' ORDER BY index_name;

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.