Update query help (1 Viewer)

DT

Registered User.
Local time
Today, 05:23
Joined
Oct 23, 2000
Messages
83
I inherited a database. I want to change all the text/criteria in one column from * to ISSUE. Why they used the * I'm not sure. The problem I'm running into is that because the text is a wildcard it changes all the info to ISSUE. Suggestions?

Thanks
 

boblarson

Smeghead
Local time
Today, 05:23
Joined
Jan 12, 2001
Messages
32,059
use the Character CHR(42):

Update TableNameHere Set FieldNameHere = "ISSUE"
WHERE FieldNameHere = Chr(42)

Be sure to test it on a copy first.
 
Last edited:

DT

Registered User.
Local time
Today, 05:23
Joined
Oct 23, 2000
Messages
83
perfect...thanks!
 

Users who are viewing this thread

Top Bottom