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

Home -> Community -> Usenet -> c.d.o.server -> Re: URGENT!!! How can I drop a column???

Re: URGENT!!! How can I drop a column???

From: Patrick Dewael <dewael.p_at_pg.com>
Date: 2000/03/16
Message-ID: <38D0A25F.9BBE01AB@pg.com>#1/1

Try

ALTER TABLE <schema_name:optional>.<table_name> DROP COLUMN <column_name> or
ALTER TABLE <schema_name:optional>.<table_name> DROP ( <column_name1>, ..., <column_namex>)

Regards,

Patrick

Emilie Carton wrote:

> how can I drop a single column from a table without losing the whole my
> dates?
> I tried to do with using:
> sql> alter table "table name " drop "column name";
> but it answers me back "missing keyword"...
> How can I solve this problem?
>
> Thanks a lot
> Emilie
Received on Thu Mar 16 2000 - 00:00:00 CST

Original text of this message

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