information-schema-innodb-ft-default-stopword-table.md 2.1 KB
Newer Older
茶陵後's avatar
茶陵後 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
### 26.4.16 信息\_SCHEMA INNODB\_英尺\_默认\_停用词表

[](<>)

[`INNODB_FT_DEFAULT_STOPWORD`](information-schema-innodb-ft-default-stopword-table.html)表包含一个列表[停用词](glossary.html#glos_stopword)创建时默认使用的`全文`索引`InnoDB`表。有关默认值的信息`InnoDB`停用词列表以及如何定义自己的停用词列表,请参阅[第 12.10.4 节,“全文停用词”](fulltext-stopwords.html).

有关相关使用信息和示例,请参阅[第 15.15.4 节,“InnoDB 信息\_SCHEMA FULLTEXT 索引表”](innodb-information-schema-fulltext_index-tables.html).

[`INNODB_FT_DEFAULT_STOPWORD`](information-schema-innodb-ft-default-stopword-table.html)表有这些列:

-   `价值`

    默认情况下用作停用词的单词`全文`索引`InnoDB`表。如果您使用以下任一选项覆盖默认停用词处理,则不使用[`innodb_ft_server_stopword_table`](innodb-parameters.html#sysvar_innodb_ft_server_stopword_table)或者[`innodb_ft_user_stopword_table`](innodb-parameters.html#sysvar_innodb_ft_user_stopword_table)系统变量。

#### 例子

```
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)
```

#### 笔记

-   你必须拥有[`过程`](privileges-provided.html#priv_process)查询此表的权限。

-   使用`INFORMATION_SCHEMA` [`列`](information-schema-columns-table.html)表或[`显示列`](show-columns.html)语句以查看有关此表列的其他信息,包括数据类型和默认值。

-   有关更多信息`InnoDB` `全文`搜索,看[第 15.6.2.4 节,“InnoDB 全文索引”](innodb-fulltext-index.html), 和[第 12.10 节,“全文搜索功能”](fulltext-search.html).