Change data in existing table (1 Viewer)

Mike Hughes

Registered User.
Local time
Today, 10:58
Joined
Mar 23, 2002
Messages
493
I have a table and one of the columns contains the case type, which may be P,A,M,O & X. I would like to change all the X to N. Would someone explain to me how to do this? See screen shot.
 

Attachments

  • x.jpg
    x.jpg
    44.9 KB · Views: 84

pr2-eugin

Super Moderator
Local time
Today, 10:58
Joined
Nov 30, 2011
Messages
8,494
Use an update Query?
Code:
UPDATE Tbl_Name SET FieldName='N' WHERE FieldName='X'
 

Mike Hughes

Registered User.
Local time
Today, 10:58
Joined
Mar 23, 2002
Messages
493
That workedl, thanks again :D
 

Users who are viewing this thread

Top Bottom