mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
5 lines
205 B
MySQL
5 lines
205 B
MySQL
|
CREATE TABLE t ENGINE = Log AS SELECT * FROM system.numbers LIMIT 20;
|
||
|
SET enable_optimize_predicate_expression = 0;
|
||
|
SELECT number FROM (select number FROM t ORDER BY number OFFSET 3) WHERE number < NULL;
|
||
|
|