Merge pull request #34435 from fanofxiaofeng/patch-2

the `name` field seems to be missing
This commit is contained in:
Anton Popov 2022-02-09 11:56:37 +03:00 committed by GitHub
commit 4d6e048d46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ The `mail` and `phone` fields are of type String, but the `icq` field is `UInt32
Get the first available contact method for the customer from the contact list:
``` sql
SELECT coalesce(mail, phone, CAST(icq,'Nullable(String)')) FROM aBook;
SELECT name, coalesce(mail, phone, CAST(icq,'Nullable(String)')) FROM aBook;
```
``` text