You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE LIVE VIEW lv AS SELECT sum(x) FROM mt;
CREATE WINDOW VIEW wv AS SELECT count(number), tumbleStart(w_id) as w_start from date GROUP BY tumble(now(), INTERVAL '5' SECOND) as w_id
The text was updated successfully, but these errors were encountered:
See https://clickhouse.com/docs/en/sql-reference/statements/create/view, it supports the following two modifiers for creating views:
LIVE
andWINDOW
:an example usage:
The text was updated successfully, but these errors were encountered: