Update docs/en/sql-reference/functions/type-conversion-functions.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
This commit is contained in:
Anna 2021-08-24 14:27:54 +03:00 committed by GitHub
parent 8ab7029cc5
commit 7f6e6c97cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,7 +212,7 @@ SELECT toDate32(toDate('1924-01-01')) AS value, toTypeName(value);
## toDate32OrZero {#toDate32OrZero}
The same as `toDate32` but returns the min value of [Date32](../../sql-reference/data-types/date32.md) if invalid argument is received.
The same as [toDate32](#todate32) but returns the min value of [Date32](../../sql-reference/data-types/date32.md) if invalid argument is received.
**Example**