The INNODB_FT_DEFAULT_STOPWORD table
      holds a list of stopwords
      that are used by default when creating a
      FULLTEXT index on InnoDB
      tables. For information about the default
      InnoDB stopword list and how to define your own
      stopword lists, see Full-Text Stopwords.
    
For related usage information and examples, see InnoDB INFORMATION_SCHEMA FULLTEXT Index Tables.
      The INNODB_FT_DEFAULT_STOPWORD table
      has these columns:
- value- A word that is used by default as a stopword for - FULLTEXTindexes on- InnoDBtables. This is not used if you override the default stopword processing with either the- innodb_ft_server_stopword_tableor the- innodb_ft_user_stopword_tablesystem variable.
Example
mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_DEFAULT_STOPWORD;
+-------+
| value |
+-------+
| a     |
| about |
| an    |
| are   |
| as    |
| at    |
| be    |
| by    |
| com   |
| de    |
| en    |
| for   |
| from  |
| how   |
| i     |
| in    |
| is    |
| it    |
| la    |
| of    |
| on    |
| or    |
| that  |
| the   |
| this  |
| to    |
| was   |
| what  |
| when  |
| where |
| who   |
| will  |
| with  |
| und   |
| the   |
| www   |
+-------+
36 rows in set (0.00 sec)Notes
- You must have the - PROCESSprivilege to query this table.
- Use the - INFORMATION_SCHEMA- COLUMNStable or the- SHOW COLUMNSstatement to view additional information about the columns of this table, including data types and default values.
- For more information about - InnoDB- FULLTEXTsearch, see InnoDB Full-Text Indexes, and Full-Text Search Functions.