Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Delete a column from a table ?
Make a copy of this table: create table b as select * from table a;
Drop and recreate table a excluding the column you do not want.
insert into new table (col1,col2,col...) exclude the one you do not want
select col1,col2,col3
from b;
Marco Nedermeijer <m.n.nedermeijer_at_rtd.nl> wrote in article
<6e8t85$iru$1_at_news.NL.net>...
> This may sound stupid, but how can a delete a column from a table ?
>
> Thanks,
>
> Marco Nedermeijer
> m.n.nedermeijer_at_rtd.nl
>
>
>
Received on Fri Mar 13 1998 - 00:00:00 CST
![]() |
![]() |