Microsoft
Software
Hardware
Network
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
Access 2007 Combo box synchronization
PPTP VPN via Windows 2008 R2
Apple Mail Notes keep reappearing after deletion
raid5 and win 2008 r2 server
Summing amount using a aggregate function in a query
weblogic portal 10.3.2
CreateProcess terminates immediately
Php SOAP-ERROR: Parsing WSDL
I need to adapt VB script to run on SQL Server
AJAX Refresh on Submit of Pop Up Window