mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 14:02:21 +00:00
6 lines
318 B
SQL
6 lines
318 B
SQL
DROP TABLE IF EXISTS test_table_comment;
|
|
CREATE VIEW test_table_comment AS SELECT toString({date_from:String});
|
|
ALTER TABLE test_table_comment MODIFY COMMENT 'test comment';
|
|
SELECT create_table_query FROM system.tables WHERE name = 'test_table_comment' AND database = currentDatabase();
|
|
DROP TABLE test_table_comment;
|