私は 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;
しかし、テーブルが存在しない場合は、例外が発生します。例外を発生させたくありません
誰でも私を助けることができますか?