Merge pull request #50331 from savezed/patch-1

Update first_value.md:remove redundant 's'
This commit is contained in:
Alexey Milovidov 2023-05-30 12:16:31 +03:00 committed by GitHub
commit 6ee3740410
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ select first_value(b) from test_data
### example2
The NULL value is ignored.
```sql
select first_value(b) ignore nulls sfrom test_data
select first_value(b) ignore nulls from test_data
```
```text