PL/SQL运行报错

CREATEORREPLACEPROCEDURECREATE_TABLE(tablenameinvarchar2)AStablecountint:=0;BEGINsele... CREATE OR REPLACE PROCEDURE CREATE_TABLE
(
tablename in varchar2
)

AS
tablecount int:=0;
BEGIN
select count(1) into tablecount from all_tables where TABLE_NAME=tablename AND OWNER='ZXIN';
if (tablecount=0) then
begin
drop table tablename;

end;
end if;
end;

删除if那段就没问题 要不然就报

错误:PLS-00103: Encountered the symbol "DROP" when expecting one of the following:

begin case declare exit for goto if loop mod null pragma
raise return select update while with <an identifier>
<a double-quoted delimited-identifier> <a bind variable> <<
close current delete fetch lock insert open rollback
savepoint set sql execute commit forall merge pipe
行:12
文本:drop table tablename;
删除drop table tablename;又报end;错误
展开
 我来答
栈木沉香
2012-11-03 · TA获得超过135个赞
知道答主
回答量:60
采纳率:0%
帮助的人:39万
展开全部
用这样
execute immediate 'drop table ' || tablename
追问
为什么我删除了drop table tablename;会报end的错误
追答
tablename 是一个字符串

你相当于这样执行 drop table 'myTableName'
百度网友63917e8d1
2012-11-03 · 超过49用户采纳过TA的回答
知道小有建树答主
回答量:151
采纳率:80%
帮助的人:80.3万
展开全部
看到这个好熟悉ZXIN
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式