Created
September 19, 2012 18:34
-
-
Save codeprimate/3751348 to your computer and use it in GitHub Desktop.
List all FULLTEXT keys used in the Current MySQL Database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DISTINCT TABLE_NAME AS `table`, COLUMN_NAME AS `key`, index_type AS `index_type` FROM information_schema.statistics WHERE table_schema=DATABASE() AND index_type='FULLTEXT'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment