You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE DATABASE IF NOT EXISTS szt;
|
|
drop table if exists szt.szt_data;
|
|
show tables ;
|
|
CREATE TABLE szt.szt_data (string_value String) ENGINE = Log();
|
|
|
|
SELECT * FROM system.clusters;
|
|
SELECT * FROM szt.szt_data;
|