Delete only some fields from a record. (1 Viewer)

sychoangel

Registered User.
Local time
Today, 10:01
Joined
Jul 4, 2008
Messages
20
I have a record that has 3 fields;
IP OWNER DATE

How can I set an update query that leaves the entry that is in the IP field, but clears the owner & date details?
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 10:01
Joined
Aug 30, 2003
Messages
36,140
All of them?

UPDATE TableName
SET OWNER = Null, Date = Null

Date is a reserved word and should not be used as a field name.
 

Users who are viewing this thread

Top Bottom