SystemIndex Catlog查询没有搜索文档的内容
本文关键字:文档 搜索 Catlog 查询 SystemIndex | 更新日期: 2023-09-27 17:59:46
我有下面的查询,用于在本地系统中搜索给定的搜索项。以下查询仅在文件标题中搜索给定的搜索项,而不是从文件内容中搜索。它只是从.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 + "*'"')