1
我有以下查詢來搜索給定搜索詞的本地系統。以下查詢僅搜索文件標題中的給定搜索詞,而不是從文件的內容中搜索。它只是從.txt文件中搜索文件的內容,而不是從.doc和.pdf文件中搜索內容。它看起來很奇怪。請幫助。SystemIndex Catlog查詢不搜索文檔的內容
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
非常感謝您的幫助和時間提前。