Question : Delete column data from Table

Hello,

For some reason I forgot how to delete column data from an Oracle table.

Please help

DELETE Column1 FROM TABLE1;

Thanks

Answer : Delete column data from Table

if you want to drop the column completely, you want to use:

ALTER TABLE TABLE1 DROP COLUMN Column1;

if you just want to empty the column data:

UPDATE TABLE1 SET Column1 = NULL;

Random Solutions  
 
programming4us programming4us