Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

dbandre29

Sobre um pequeno bloco pl/sql

Recommended Posts

Amigos estou coma seguinte missão: Tenho que fazer um select no meu catalogogo para saber se existe uma tal tabela select table_name from user_tables where table_name = ' tabela ' ;-- Bem se retornar regristro eu tenho que dar um:if xxx>o thenalter table tabela drop column elseCREATE TABLE TABELA (CAMPO TIPO ,CAMPO TIPO ,CAMPO TIPO )--Entendeu somente uma lógica simples mas

Compartilhar este post


Link para o post
Compartilhar em outros sites

begin

select table_name

from user_tables

where table_name = ' tabela ';

execute immediate 'CREATE TABLE TABELA (CAMPO TIPO ,CAMPO TIPO ,CAMPO TIPO )';

exception

when no_data_found then

execute immediate 'alter table tabela drop column';

end;

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.