直播中
<SCRIPT LANGUAGE="JavaScript">
TempString = navigator.appVersion
if (navigator.appName == "Microsoft Internet Explorer"){
// Check to see if browser is Microsoft
if (TempString.indexOf ("4.") >= 0){
// Check to see if it is IE 4
document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
}
else {
document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
}
}
else if (navigator.appName == "Netscape") {
// Check to see if browser is Netscape
document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
}
else
document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
</script>
<META NAME="DESCRIPTION" CONTENT="Tells how to refine searches by using complex queries"></head>
<body bgcolor="#FFFFFF" text="#000000">
<font face="宋體">
<h1><a name="QueryLanguage">查詢語言</a></h1>
<p>通過在查詢表格中鍵入單詞或短語,然后單擊按鈕執(zhí)行查詢,就可以在 Web 站點中搜索任意的單詞或短語(例如,查詢表格示例中的“執(zhí)行查詢”按鈕)。本節(jié)將介紹以下主題:
</p>
<ul>
<li><strong><a href="#Operators">邏輯和相近運算符</a>:</strong>顯示如何通過插入邏輯和相近運算符執(zhí)行更精確的查詢。</li>
<li><strong><a href="#Wildcards">通配符</a>:</strong>幫助您查找包含與所給單詞相似的單詞的頁。</li>
<li><strong><a href="#FreeTextQueries">自由文本查詢</a>:</strong> 說明如何基于短語的意思來表述一個查詢,而不是用精確的單詞。</li>
<li><strong><a href="#VectorQueries">矢量空間查詢</a>:</strong>解釋如何獲得與單詞和短語列表匹配的查詢結(jié)果。</li>
<li><strong><a href="#PropertyValueQueries">屬性值查詢</a>:</strong>告訴您如何查詢文件的屬性值。</li>
<li><strong><a href="#Examples">查詢示例</a>:</strong>給出各種查詢的示例。</li>
<li><strong><a href="#PropertyNamesList">屬性名列表</a>:</strong>列出和說明可用于查詢的屬性名。</li>
</ul>
<p>搜索產(chǎn)生一個文件列表,這些文件中包含某個單詞或短語(不管單詞或短語出現(xiàn)在文件中的任何地方)。下面列表給出表述查詢的規(guī)則:</p>
<ul>
<li>連續(xù)的單詞作為短語對待,它們在匹配文檔中必須以相同的順序出現(xiàn)。</li>
<li>查詢不區(qū)分大小寫,因此可以用大寫或小寫鍵入查詢。</li>
<li>可以搜索任何單詞,但不包括在例外列表中列出的單詞(對于英語,包括 <em>a</em>、<em>an</em>、<em>and</em>、<em>as</em> 和其他一些單詞), 它們在查詢中將被忽略。</li>
<li>在例外列表中的單詞在短語中將作為占位符對待,用來進行相似查詢。例如,如果查詢“Word for Windows”,結(jié)果將給出“Word for Windows”和“Word and Windows” ,因為 <em>for </em> 是一個在例外列表中出現(xiàn)的虛詞。</li>
<li>標點符號在搜索時將被忽略,如句號 (.)、冒號 (:)、分號 (;) 和逗號 (,)。</li>
<li>要在查詢中使用特殊對待的字符,如 &、|、^、#、@、$、(、),請用引號 (“) 將查詢括起來。</li>
<li>要搜索包含引號的單詞或短語,請先用引號把整個短語括起來,并用兩遍引號括住想用引號括起來的單詞。例如,“World-Wide Web or ““Web””” 將搜索 <em>World-Wide Web or “Web”</em>。</li>
<li>可以插入<a href="#Operators">邏輯運算符</a>(<strong>AND</strong>、 <strong>OR</strong> 和 <strong>NOT</strong>)以及<a href="#Operators">相近運算符</a> (<strong>NEAR</strong>) 來指定附加的搜索信息。</li>
<li><a href="#Wildcards">通配字符</a> (*) 可以用所給前綴匹配單詞。查詢 esc* 可以匹配詞條 “ESC”、“escape” 等等。</li>
<li><a href="#FreeTextQueries">自由文本查詢</a>可以不按查詢語法指定查詢。</li>
<li>可以指定<a href="#VectorQueries">矢量空間查詢</a>。</li>
<li>可以執(zhí)行 ActiveX™ (OLE) 和文件屬性的<a href="#PropertyValueQueries">屬性值查詢</a>。</li>
</ul>
<h1><a name="Operators">邏輯和相近運算符</a></h1>
<p>邏輯和相近運算符可以創(chuàng)建更精確的查詢。</p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width=33%>搜索目標</th>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width=33%>示例</th>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width=33%>結(jié)果</th>
</tr>
<tr>
<td valign="top">同一頁中同時包含兩個詞條</td>
<td valign="top"><code>access and basic</code><br>
<strong>—</strong>或<strong>—</strong><br>
<code>access & basic</code></td>
<td valign="top">包含單詞“access”和“basic”的頁。</td>
</tr>
<tr>
<td valign="top">同一頁中包含兩個詞條之一</td>
<td valign="top"><code>cgi or isapi</code><br>
<strong>—</strong>或<strong>—</strong><br>
<code>cgi | isapi</code></td>
<td valign="top">包含單詞“cgi”或“isapi”的頁。</td>
</tr>
<tr>
<td valign="top">包含第一個詞條,但不包含第二個詞條</td>
<td valign="top"><code>access and not basic</code><br>
<strong>—</strong>或<strong>—</strong><br>
<code>access & ! basic</code></td>
<td valign="top">包含單詞“access”,但不包含單詞“basic”的頁。</td>
</tr>
<tr>
<td valign="top">不匹配某個屬性值的頁</td>
<td valign="top"><code>not @size = 100</code><br>
<strong>—</strong>或<strong>—</strong><br>
<code>! @size = 100</code></td>
<td valign="top">大小不是 100 字節(jié)的頁。</td>
</tr>
<tr>
<td valign="top">同一頁中同時包含兩個詞條,且互相靠近</td>
<td valign="top"><code>excel near project</code><br>
<strong>—</strong>或<strong>—</strong><br>
<code>excel ~ project</code></td>
<td valign="top">包含互相靠近的單詞“excel”和“project”的頁。</td>
</tr>
</table>
<p>提示:</p>
<ul>
<li>可以在查詢表達式中加入括弧,表達式中帶括弧的部分比查詢的其他部分先執(zhí)行。</li>
<li>使用雙引號 (“) 可以指明邏輯或 <strong>NEAR</strong> 運算符關(guān)鍵字在查詢中需要忽略。例如,“Abbott and Costello”將匹配包含該短語的頁,而不是匹配符合該邏輯表達式的頁。作為運算符,單詞 <em>and</em> 在英語中是一個虛詞。</li>
<li><strong>NEAR</strong> 運算符與 <strong>AND</strong> 運算符相似, <strong>NEAR</strong> 也返回一頁中兩個單詞都包含的頁。但是,<strong>NEAR</strong> 和 <strong>AND</strong> 運算符不同之處在于,<strong>NEAR</strong> 要看單詞是否靠近。也就是說,包含搜索單詞較近的頁的等級將大于或等于單詞相隔較遠的頁的等級。如果搜索的單詞相隔大于 50 個單詞,該頁將定為等級零</li>
<li>在內(nèi)容查詢中,<strong>NOT</strong> 運算符只能用在 <strong>AND</strong> 運算符之后,它僅用來排除匹配前面內(nèi)容約束的頁。對于屬性值查詢,<strong>NOT</strong> 運算符可以不與 <strong>AND</strong> 運算符一起使用。</li>
<li><strong>AND</strong> 運算符的優(yōu)先級高于 <strong>OR</strong>。例如,下面的前三個查詢相等,但第四個不同:<br>
a AND b OR c<br>
c OR a AND b<br>
c OR (a AND b)<br>
(c OR a) AND b</li>
</ul>
<p><strong>注意</strong> 在所有語言中,符號(&、|、!、 ~)與英語關(guān)鍵字 <strong>AND</strong>、<strong>OR</strong>、<strong>NOT</strong> 和 <strong>NEAR</strong> 的作用相同(Index Server 支持)。如果瀏覽器被設(shè)置為下列六種語言,本地化的關(guān)鍵字也可以使用。</p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="40%">語言</th>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="60%">關(guān)鍵字</th>
</tr>
<tr>
<td valign="top">德語</td>
<td valign="top"><strong>UND</strong>、<strong>ODER</strong>、<strong>NICHT</strong>、<strong>NAH</strong></td>
</tr>
<tr>
<td valign="top">法語</td>
<td valign="top"><strong>ET</strong>、<strong>OU</strong>、<strong>SANS</strong>、 <strong>PRES</strong></td>
</tr>
<tr>
<td valign="top">西班牙語</td>
<td valign="top"><strong>Y</strong>、<strong>O</strong>、<strong>NO</strong>、<strong>CERCA</strong></td>
</tr>
<tr>
<td valign="top">荷蘭語</td>
<td valign="top"><strong>EN</strong>、<strong>OF</strong>、<strong>NIET</strong>、 <strong>NABIJ</strong></td>
</tr>
<tr>
<td valign="top">瑞典語</td>
<td valign="top"><strong>OCH</strong>、<strong>ELLER</strong>、<strong>INTE</strong>、<strong>NÄRA</strong></td>
</tr>
<tr>
<td>意大利語</td><td><strong>E</strong>、<strong>O</strong>、<strong>NO</strong>、<strong>VICINO</strong></td>
</tr>
</table>
<p><strong>注意</strong> NEAR 運算符只能用于單詞或短語。</p>
<h1><a name="Wildcards">通配符</a></h1>
<p><a name="Wildcards">通配符可以幫助您查找包含與所給單詞相似的單詞的頁。</a></p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0"><a name="Wildcards">搜索目標</a></th>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0"><a name="Wildcards">示例</a></th>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0"><a name="Wildcards">結(jié)果</a></th></tr>
<tr>
<td valign="top"><a name="Wildcards">具有相同前綴的單詞</a></td>
<td valign="top"><a name="Wildcards"><code>comput*</code></a></td>
<td valign="top"><a name="Wildcards">包含前綴為“comput”的單詞的頁,例如“computer”、“computing”等等</a>。</td>
</tr>
<tr>
<td valign="top"><a name="Wildcards">基于同一個本詞的單詞</a></td>
<td valign="top"><a name="Wildcards"><code>fly**</code></a></td>
<td valign="top"><a name="Wildcards">包含基于相同本詞“fly”的單詞的頁,例如“flying”、“flown”、“flew”等等</a>。</td>
</tr>
</table>
<h1><a name="FreeTextQueries">自由文本查詢</a></h1>
<p><a name="FreeTextQueries">在自由文本查詢中,查詢引擎查找與單詞或短語最佳匹配的頁。這種查詢匹配意思,而不是精確的單詞。在自由文本查詢中,邏輯、相近和通配運算符都將被忽略。自由文本查詢以 $contents 為前綴。</a></p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr><th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0"><a name="FreeTextQueries">搜索目標</a></th>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0"><a name="FreeTextQueries">示例</a></th>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0"><a name="FreeTextQueries">結(jié)果</a></th>
</tr>
<tr>
<td valign="top"><a name="FreeTextQueries">匹配自由文本的文件</a></td>
<td valign="top"><a name="FreeTextQueries"><code>$contents how do I print in Microsoft Excel? </code></a></td>
<td valign="top"><a name="FreeTextQueries">提到 printing 和 Microsoft Excel 的頁。</a></td>
</tr>
</table>
<h1><a name="VectorQueries">矢量空間查詢</a></h1>
<p>查詢引擎支持矢量空間查詢。矢量查詢返回匹配單詞和短語列表的頁,每頁的排列指明了頁面與查詢匹配的程度。</p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0">搜索目標</th>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0">示例</th>
<th align="Left" valign="bottom" width=33% bgcolor="#C0C0C0">結(jié)果</th></tr>
<tr>
<td valign="top">包含指定單詞的頁</td>
<td valign="top"><code>light, bulb</code></td>
<td valign="top">包含與搜索單詞最匹配的單詞的文件</td>
</tr>
<tr>
<td valign="top">包含加權(quán)的前綴、單詞和短語的頁</td>
<td valign="top"><code>invent*, light[50], bulb[10],
"light bulb"[400]</code></td>
<td valign="top">包含以“invent,”為前綴的單詞、單詞“l(fā)ight”、 “bulb”和短語“l(fā)ight bulb”的文件(詞條被加權(quán))</td>
</tr>
</table>
<p> <!-- </p> --><br>
<ul>
<li>在矢量查詢中的組件以逗號隔開。</li>
<li>矢量查詢中的組件可以用 [weight] 語法加權(quán)。</li>
<li>矢量查詢返回的頁不必匹配查詢的所有詞條。</li>
<li>當結(jié)果按等級排序時,矢量查詢最好。</li>
</ul>
<h1><a name="PropertyValueQueries">屬性值查詢</a></h1>
<p>用屬性值查詢,可以查找含有與所給標準相匹配的屬性值的文件??梢杂脕聿樵兊膶傩园ㄎ募幕拘畔ⅲㄈ缥募⑽募笮。┖?ActiveX 屬性(包含在文檔摘要中),ActiveX 屬性由 ActiveX 應用程序創(chuàng)建并存儲在文件中。</p>
<p>下面是兩種類型的屬性查詢:</p>
<ul>
<li><a name="PropertyValueQueries"><strong>關(guān)系屬性查詢</strong>包括“at”字符 (@)、</a><a href="#PropertyNames">屬性名</a>、<a href="#RelationalOperators">關(guān)系運算符</a>和<a href="#PropertyValues">屬性值</a>。例如,要查找大小超過一兆字節(jié)的文件,可以執(zhí)行查詢 @size > 1000000。</li>
<li><strong>正則表達式查詢</strong>包括號碼符號 (#)、屬性名和屬性值的<a href="#RegularExpressions">正則表達式</a>。例如,要查找所有視頻 (.avi) 文件,可以執(zhí)行查詢 #filename *.avi。正則表達式不會匹配特定的屬性內(nèi)容 (#contents) 和全部 (#all)。 在查詢中不能檢索的屬性不能用于 # 查詢,包括未存儲在屬性緩存中的 HTML META 屬性。</li>
</ul>
<p>本節(jié)包含以下主題:</p>
<ul>
<li><a href="#PropertyNames">屬性名</a></li>
<li><a href="#RelationalOperators">關(guān)系運算符</a></li>
<li><a href="#PropertyValues">屬性值</a></li>
</ul>
<h2><a name="PropertyNames">屬性名</a></h2>
<p>屬性名以“at”(@) 或號碼符號 (#) 開頭,@ 用于關(guān)系查詢,# 用于正則表達式查詢。</p>
<p>如果未指定屬性名,將假定為 <em>@contents</em>。</p>
<p>所有文件中都可用的屬性包括:</p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="40%">屬性名</th>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="60%">說明</th></tr>
<tr>
<td valign="top">All</td>
<td valign="top">匹配單詞、短語和任何屬性</td>
</tr>
<tr>
<td valign="top">Contents</td>
<td valign="top">文件中單詞和短語</td>
</tr>
<tr>
<td valign="top">Filename</td>
<td valign="top">文件的名稱</td>
</tr>
<tr>
<td valign="top">Size</td>
<td valign="top">文件大小</td>
</tr>
<tr>
<td valign="top">Write</td>
<td valign="top">文件的最后一次修改時間</td>
</tr>
</table>
<p>ActiveX 屬性值也可以用于查詢,絕大多數(shù)由 ActiveX 應用程序創(chuàng)建的 Web 站點文件可以用下列屬性查詢:</p>
<table border="1" cellpadding="4" cellspacing="1" width="100%">
<tr>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="40%">屬性名</th>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="60%">說明</th></tr>
<tr>
<td valign="top">DocTitle</td>
<td valign="top">文檔的標題</td>
</tr>
<tr>