gpt4 book ai didi

sql - Oracle 11G 中的 INSERT SELECT 语句

转载 作者:行者123 更新时间:2023-12-03 08:32:01 25 4
gpt4 key购买 nike

我正在尝试在 Oracle 11g 中运行一个非常简单的 sql 语句。

 insert into table1 (col1, col2) values (select t1.col1, t2.col2 from oldtable1 t1, oldtable2 t2);

非常简单的查询。笛卡尔将旧表 1 连接到旧表 2,将结果值放入表 1。

我自己运行了子查询,它运行良好。
 select t1.col1, t2.col2 from oldtable1 t1, oldtable2 t2

当我尝试运行完整语句时,出现以下错误:
 SQL Error: ORA-00936: missing expression
00936. 00000 - "missing expression"

我也不能让它在 MySql 中工作。我的陈述有问题,但我不确定它是什么。

最佳答案

您的查询应该是:

insert into table1 (col1, col2) 
select t1.col1, t2.col2
from oldtable1 t1, oldtable2 t2

IE。没有 VALUES部分。

关于sql - Oracle 11G 中的 INSERT SELECT 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7323407/

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