我使用 Postgresql,如果存在我想删除表。我的代码是
execute 'drop table if exists production.'|| layer_name || '' into result_var;
exception
when others then
execute 'insert into production.'|| layer_name || ' select * from staging.'|| layer_name ;
return 1;
但如果不存在表,则表示异常。我不想抛出异常
有谁能够帮我?