mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
5 lines
199 B
MySQL
5 lines
199 B
MySQL
|
select toDate32('2020-01-01') in (toDate('2020-01-01'));
|
||
|
select toDate('2020-01-01') in (toDate32('2020-01-01'));
|
||
|
select toDate('2020-01-01') in 1::Int64;
|
||
|
select toDate32('2020-01-01') in 1::UInt64;
|