AdmMono/src/db/template/drop_table.sql

8 lines
191 B
SQL

-- DROP TABLE
declare
object_exists exception;
pragma exception_init (object_exists , -00942);
begin
execute immediate '...';
exception when object_exists then null;
end;