Merge pull request #30222 from PaVeL-Ekt/patch-2

Fixed a typo in the string-functions.md
This commit is contained in:
Nikolay Degterinsky 2021-10-15 12:10:24 +03:00 committed by GitHub
commit 6b9a1ab60b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,15 +34,15 @@ empty(x)
Запрос:
```sql
SELECT notempty('text');
SELECT empty('text');
```
Результат:
```text
┌─empty('')─┐
1
└───────────┘
┌─empty('text')─┐
0
└───────────────
```
## notEmpty {#notempty}