Overview of the SharePoint Search SQL Query
Applies to: SharePoint Server 2010
A SharePoint Server search SQL query is similar to a standard SQL query, as shown in the following syntax.
SELECT <columns>
FROM <content source>
WHERE <conditions>
ORDER BY <columns>
Remarks
The SharePoint Server search SQL query syntax supports many options that enable more complicated queries.
Note
SharePoint Server search SQL queries are limited to 4096 characters to reduce the risk of potential denial-of-service attacks.
The following table describes each clause in the SELECT statement, and the features it supports.
Clause |
Description |
---|---|
SELECT |
Specifies the columns returned by the query. |
FROM |
Specifies the location to search. |
WHERE |
Specifies what constitutes a matching document. This clause has many options, enabling rich control over the search conditions. For example, you can match against words, phrases, inflectional word forms, strings, numeric and bitwise values, and multivalued arrays. You can also combine matching conditions with Boolean operators. |
ORDER BY |
Specifies the sort order for the results returned by the query. You can specify more than one field on which the results are sorted, and you can use ascending or descending ordering. |
Query Example
The following example searches for documents where the title contains "SharePoint" from the "Marketing" search scope.
SELECT rank, title, path, author from Scope() WHERE CONTAINS(title,'SharePoint') and "scope"='Marketing'
See Also
Reference
SELECT Statement in SharePoint Search SQL Syntax
FROM Clause in SharePoint Search SQL Syntax
WHERE Clause in SharePoint Search SQL Syntax