Show a tables FULLTEXT indexed columns

后端 未结 2 1848
孤独总比滥情好
孤独总比滥情好 2021-02-06 02:07

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.

2条回答
  •  被撕碎了的回忆
    2021-02-06 02:39

    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.

提交回复
热议问题