insert into with

用with查询,结果insert到表中,语法应该怎么写呢?
insert into trip_count_by_window_2
with t as (select * from trip_count_by_window_2 where time_begin = ‘2022-07-26 00:00:00’)
select *
from t;
执行上面语句报错,不加第一行insert 语句,正常运行

您好,这个语法目前不支持的。

你好,2.2之后的版本支持