Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Deleting Columns in SQL*Plus
No !
If you need it, you can do it by another way :
create table tmp as select col1, col3, col5,... from oldtable;
drop table oldtable;
rename tmp to oldtable;
WARNINGS :
Hope this helps :-)
-- REIP Jean-Claude Enlevez ".remove.this" de l'adresse (anti-spam) jacari.consultant.remove.this_at_skynet.be Trien Ngoc Nguyen wrote in message <345b54e0.27733250_at_news1.ibm.net>...Received on Sat Nov 01 1997 - 00:00:00 CST
>Is there a way to delete a column in SQL*Plus.?
>
>Thank you,
>
>trien
![]() |
![]() |