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
vb script to ping hosts and check operating system
Directory sizes
Problem with internal DNS
Exchange SMTP problems
Setting msExchMailboxSecurityDescr
iptor with VB.NET
Error string in catch block?
MySQL error in SQL syntax
wrr-queue bandwidth error
Windows BAD_SySTEM_CONFIG_INFO Bsod
Does VPN users slow down local users?