toYYYYMMDD
Converts a date or date with time to a UInt32 number containing the year and month number (YYYY 10000 + MM 100 + DD).
Syntax
toYYYYMMDD(expr)
Return Type
UInt32, returns in YYYYMMDD
format.
Examples
SELECT toDate(18875);
+---------------+
| toDate(18875) |
+---------------+
| 2021-09-05 |
+---------------+
SELECT toYYYYMMDD(toDate(18875));
+---------------------------+
| toYYYYMMDD(toDate(18875)) |
+---------------------------+
| 20210905 |
+---------------------------+
SELECT toDateTime(1630833797);
+------------------------+
| toDateTime(1630833797) |
+------------------------+
| 2021-09-05 09:23:17 |
+------------------------+
SELECT toYYYYMMDD(toDateTime(1630833797));
+------------------------------------+
| toYYYYMMDD(toDateTime(1630833797)) |
+------------------------------------+
| 20210905 |
+------------------------------------+