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
Macro for delay send of an excel sheet to a mail recipient
JQuery based image (actually an element of code) rotator
Applying service pack 7 to BES 4.0
Reference a selected rows column value from a gridview in VB .Net 3.5
VBScript: Pulling lastLogonTimestamp
Running .exe in a logon script
Is isql supported in SQL 2008
How do I upgrade firmware on Netgear wg103
jQuery: Add div at beginning of other div
Office Language Settings on Remote Desktop Server 2008 R2