mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
5 lines
199 B
SQL
5 lines
199 B
SQL
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;
|