drop-if-exists | sql-memo
sql
drop table IF EXISTS tablename
だけど、Oracle で使用可能なのは 23c から
代わりに
sql
begin
execute immediate 'DROP TABLE ACTIONS';
exception
when others then
if SQLCODE != -942 then
raise;
end if;
end;
/
最後の /
は、PL/SQL ブロックの終了を表す