How can I query the list of system stop words in SQL Server? I need to be able to do this without creating a new stop list that copies the system stop list.
如何查询SQL Server中的系统停用词列表?我需要能够在不创建复制系统停止列表的新停止列表的情况下执行此操作。
1 个解决方案
#1
10
SELECT stopword
FROM sys.fulltext_system_stopwords ssw
WHERE language_id = 1033;
#1
10
SELECT stopword
FROM sys.fulltext_system_stopwords ssw
WHERE language_id = 1033;