If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Update problem

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-23-09, 06:27
ankur02018 ankur02018 is offline
Registered User
 
Join Date: Jun 2007
Posts: 189
Smile Update problem

Hi ,
I want to update column such that

If column consist

JOBDESC=Resolve user queries post Go â?? Live

I want to update only â?? to space

A query such that where find â?? in that column replace with space?
Reply With Quote
  #2 (permalink)  
Old 02-23-09, 06:34
mike_bike_kite mike_bike_kite is offline
vaguely human
 
Join Date: Jun 2007
Location: London
Posts: 2,519
Something like this might work :

Code:
update YourTable 
set    YourColumn = REPLACE( YourColumn , 'â??' , ' ' )
where  YourColumn like '%â??%'
Just not sure whether you can use the string just like that.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On