Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Help !: How can I drop a column in a table?

Re: Help !: How can I drop a column in a table?

From: dani <drezusta_at_airtel.net>
Date: Wed, 24 Jul 2002 08:27:42 +0200
Message-ID: <ahlheh$7u6$1@nsnmrro2-gest.nuria.telefonica-data.net>


Thanks everybody,

I will try it !!

Dani

"AF" <af_at_nospam.com> escribió en el mensaje news:ahk97q$s48$1_at_pith.uoregon.edu...
> This should work.
> Lets say you have a table t1 with columns a, b and the offending c
>
> Create table t2 as ( Select a, b from t1)
> drop table t1
> create table t1 as (select * from t2)
> drop table t2
>
> All done. But be careful no warranty expressed or implied :)
> A
>
>
> "dani" <drezusta_at_airtel.net> wrote in message
> news:ahj2k7$9ad$1_at_nsnmrro2-gest.nuria.telefonica-data.net...
> > Hi,
> > I got a problem, I don't know what it's the correct syntax to eliminate
a
> > column in a table.
> > I've tried with : "ALTER TABLE t DROP COLUMN c", but doesn't work
> >
> > Any idea ?
> >
> > thanks
> >
> >
> > Dani
> >
> >
>
>
Received on Wed Jul 24 2002 - 01:27:42 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US