- Categories:
String & binary functions (Matching/Comparison)
CONTAINS¶
Returns true if expr1 contains expr2. Both expressions must be text or binary expressions.
Tip
You can use the search optimization service to improve the performance of queries that call this function. For details, see Search optimization service.
Syntax¶
Arguments¶
expr1The string to search in.
expr2The string to search for.
Returns¶
Returns a BOOLEAN or NULL:
Returns TRUE if
expr2is found insideexpr1.Returns FALSE if
expr2is not found insideexpr1.Returns NULL if either input expression is NULL.
Usage notes¶
For comparisons that match a string against more than one specified pattern, you can use the following functions:
Collation details¶
The collation specifications of all input arguments must be compatible.
This function does not support the following collation specifications:
pi(punctuation-insensitive).cs-ai(case-sensitive, accent-insensitive).
Examples¶
These examples use the CONTAINS function.
Determine whether column values contain a string¶
Create a table with a single column that contains string values.
Determine whether the values in column s contain the string te:
Use CONTAINS with collation¶
In the following example, CONTAINS returns different results for the same argument values with different collation specifications.