mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
9 lines
250 B
SQL
9 lines
250 B
SQL
DROP TABLE IF EXISTS test.stripelog;
|
|
CREATE TABLE test.stripelog (x UInt8) ENGINE = StripeLog;
|
|
|
|
SELECT * FROM test.stripelog ORDER BY x;
|
|
INSERT INTO test.stripelog VALUES (1), (2);
|
|
SELECT * FROM test.stripelog ORDER BY x;
|
|
|
|
DROP TABLE test.stripelog;
|