mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-08 07:22:25 +00:00
7 lines
183 B
SQL
7 lines
183 B
SQL
drop table if exists test;
|
|
create table test (x UInt32, y String) engine=Memory;
|
|
insert into test select * from generateRandom() limit 10;
|
|
select count() from test;
|
|
drop table test;
|
|
|