Skip to content

Commit 2aaf9a8

Browse files
authored
Try it without the box
1 parent 9596bf0 commit 2aaf9a8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

docs/t-sql/functions/regexp-like-transact-sql.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ REGEXP_LIKE
2929
)
3030
```
3131

32-
> [!NOTE]
33-
> **REGEXP_LIKE** is available only with compatibility level 170 and above. If the database compatibility level is lower than 170, **REGEXP_LIKE** is not available. Other [regular expression scalar functions](regular-expressions-functions-transact-sql.md) are available at all compatibility levels.
34-
>
35-
> You can check compatibility level in the `sys.databases` view or in database properties. You can change the compatibility level of a database with the following command:
36-
>
37-
> ```sql
38-
> ALTER DATABASE [DatabaseName] SET COMPATIBILITY_LEVEL = 170;
39-
> ```
32+
**REGEXP_LIKE** requires database compatibility level 170 and above. If the database compatibility level is lower than 170, **REGEXP_LIKE** is not available. Other [regular expression scalar functions](regular-expressions-functions-transact-sql.md) are available at all compatibility levels.
33+
34+
You can check compatibility level in the `sys.databases` view or in database properties. You can change the compatibility level of a database with the following command:
35+
36+
```sql
37+
ALTER DATABASE [DatabaseName] SET COMPATIBILITY_LEVEL = 170;
38+
```
4039

4140
## Arguments
4241

0 commit comments

Comments
 (0)