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
Using Split in VB
Exchange 2010 Domain Prep
how to search for a file with no dimensions
Database on a 64 bit OS - Conection issues
Cisco PIX 506E configuration for VPN pass through
Which VMWARE software should i run? ESXi, ESX, vSphere, Server????
User's Web-Based AOL Mail is sending spam to all his contacts
Problem with Microsoft Transporter Suite
mac mail profile not recognized / corrupted
setting text of a dynamic dom element using javascript