mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
22 lines
267 B
SQL
22 lines
267 B
SQL
drop table if exists tbl_repr;
|
|
|
|
CREATE TABLE tbl_repr(
|
|
ts DateTime,
|
|
x String)
|
|
ENGINE=MergeTree ORDER BY ts;
|
|
|
|
|
|
SELECT *
|
|
FROM
|
|
(
|
|
SELECT
|
|
x,
|
|
length(x)
|
|
FROM tbl_repr
|
|
WHERE ts > now()
|
|
LIMIT 1
|
|
)
|
|
WHERE x != '';
|
|
|
|
drop table if exists tbl_repr;
|