mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
5 lines
215 B
SQL
5 lines
215 B
SQL
DROP TEMPORARY TABLE IF EXISTS test_00724;
|
|
CREATE TEMPORARY TABLE test_00724 (d Date, dt DateTime);
|
|
INSERT INTO test_00724 VALUES (toDateTime('2000-01-01 01:02:03'), toDate('2000-01-01'));
|
|
SELECT * FROM test_00724;
|