I'm running this PL / SQL and if the condition drops to else
, how to show the message to the user?
declare
cont integer;
tabela varchar2(100) := 'PESSOA';
coluna varchar2(100) := 'NOME';
begin
SELECT COUNT(NOME) into cont FROM PESSOA;
if cont = 0 then
execute immediate 'ALTER TABLE '||tabela||' DROP COLUMN '||coluna||'';
commit;
else
('Coluna '||coluna||'não excluído porque contém Dados');
end if;
end;
/