mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-07 23:12:34 +00:00
15 lines
510 B
SQL
15 lines
510 B
SQL
|
|
drop table if exists table_pv;
|
|
create table table_pv (id Int32, timestamp_field DateTime) engine = Memory();
|
|
|
|
insert into table_pv values(1, '2024-03-01 00:00:00');
|
|
insert into table_pv values (2, '2024-04-01 01:00:00');
|
|
|
|
create view pv as select * from table_pv where timestamp_field > {timestamp_param:DateTime};
|
|
|
|
select * from pv (timestamp_param=toDateTime('2024-04-01 00:00:01'));
|
|
|
|
select * from pv (timestamp_param=toDateTime('2024-040')); -- { serverError CANNOT_PARSE_DATETIME }
|
|
|
|
drop table table_pv;
|