gpt4 book ai didi

oracle - 如何使用Oracle全局临时表?

转载 作者:行者123 更新时间:2023-12-04 22:21:04 24 4
gpt4 key购买 nike

我正在尝试使用 Oracle 全局临时表,而无需在数据库中物理创建表。以下代码不起作用。有人可以解释一下使用全局临时表的正确方法吗?

declare
global temporary table my_temp_table(column1 number) on commit preserve rows;
begin
insert into my_temp_table (column1) values (1);
select * from my_temp_table;
end;

最佳答案

除非您使用 EXECUTE IMMEDIATE,否则您无法在 PL/SQL 中创建表。尝试这个:

create global temporary table my_temp_table(column1 number) on commit preserve rows;    

insert into my_temp_table (column1) values (1);
select * from my_temp_table;

关于oracle - 如何使用Oracle全局临时表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20706724/

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