mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
9 lines
250 B
MySQL
9 lines
250 B
MySQL
|
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;
|