gpt4 book ai didi

sqlplus - 在sqlplus中执行立即截断表

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

为什么 execute immediate 'truncate table trade_economics'; 在 sqlplus 脚本中给出以下错误?

 BEGIN immediate 'truncate table trade_economics'; END;
*
ERROR at line 1:
ORA-06550: line 1, column 17:
PLS-00103: Encountered the symbol "truncate table trade_economics" when
expecting one of the following:
:= . ( @ % ;
The symbol ":=" was substituted for "truncate table trade_economics" to
continue.`

最佳答案

您需要在 immediate 之前添加 execute 才能使其正常工作。

类似于:

begin
execute immediate 'truncate table foo';
end;
/

关于sqlplus - 在sqlplus中执行立即截断表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13230941/

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