码迷,mamicode.com
首页 > 数据库 > 详细

SQL篇

时间:2019-08-09 09:16:40      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:output   imm   The   HERE   dia   exec   from   count   where   

declare n_cnt number;
begin
---查询要创建的表示否存在
select count(*) into n_cnt from user_tables where tablename=‘A‘;
---如果存在
if n_cnt>0 then
dbms_output.put_line(‘删除A表!‘);
execute immediate ‘drop table "A"‘;
--否则
else
dbms_output.put_line(‘删除B表!‘);
execute immediate ‘drop table "B"‘;
end if;
execute immediate ‘CREATE TABLE "A" ( "ID" VARCHAR2(10), "NAME" VARCHAR2(10) )‘;
end;

SQL篇

标签:output   imm   The   HERE   dia   exec   from   count   where   

原文地址:https://blog.51cto.com/14489693/2427835

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!