gpt4 book ai didi

sql - Vertica - 解决将 WITH 与 INSERT 语句一起使用的问题

转载 作者:行者123 更新时间:2023-12-05 08:27:20 26 4
gpt4 key购买 nike

我有一个像

这样的 SQL 查询
with subtable as (
................
)
select *
from subtable

我想将 select 语句中的记录插入到表中。寻找类似的东西:

with subtable as (......)
insert into newtable
select *
from subtable

但是,在 Vertica 中,INSERT 不能与 WITH (CTE) 语句一起使用。

有解决办法吗?

感谢帮助

最佳答案

with 是选择的一部分。

insert into newtable 
with subtable as (......)
select *
from subtable

关于sql - Vertica - 解决将 WITH 与 INSERT 语句一起使用的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41388083/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com