SystemIndex Catlog查询没有搜索文档的内容



我有下面的查询,用于在本地系统中搜索给定的搜索项。以下查询仅在文件标题中搜索给定的搜索项,而不是从文件内容中搜索。它只是从.txt文档中搜索文件的内容,而不是从.doc和.pdf文档中搜索。它看起来很奇怪。请帮忙。

SELECT "System.ItemName", "System.ItemFolderPathDisplay", "System.ItemTypeText", "System.ItemDate", "System.Kind", "System.ItemUrl" FROM "SystemIndex" WHERE CONTAINS(System.Search.Contents,'"SearchTerm"')  AND (System.FileName LIKE '%.doc' OR System.FileName LIKE '%.txt' OR System.FileName LIKE '%.xls' OR System.FileName LIKE '%.docx' OR System.FileName LIKE '%.xlsx' OR System.FileName LIKE '%.ppt' OR System.FileName LIKE '%.pptx' OR System.FileName LIKE '%.pdf')  AND Contains(System.Kind, 'document') ORDER BY System.FileName ASC

非常感谢您的帮助和提前安排的时间。

试试这个:

CONTAINS('"" + Searc + "*"')

相关内容

  • 没有找到相关文章

最新更新