I\'m looking to run a query that will return a list of columns in a table that are FULLTEXT indexed. The table is in MyISAM format and i\'ll be using php to construct the query.
Here's another way:
SHOW CREATE TABLE [database_name].[table_name]
Replace the bracketed placeholders with your own values.
Peruse the output for FULLTEXT lines.