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 > Query Select Like and replace/update

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-11-09, 20:42
urbn urbn is offline
Registered User
 
Join Date: May 2009
Posts: 3
Query Select Like and replace/update

Good afternoon everyone.

I am trying to come up with a script that will do a select using a LIKE statment and then updating each found record with the same string minute "THE"

For example I have several thousand records that need to be update that start like "The Locusts" or the a.k.a.s. What I need to do is replace "The Locusts" with "Locusts".

So far I know I need to do:
Select * FROM table where item like "The%'

Anyone have any experience doing this and want to help out?

Thanks!
-Eric.
Reply With Quote
  #2 (permalink)  
Old 05-11-09, 20:55
urbn urbn is offline
Registered User
 
Join Date: May 2009
Posts: 3
o I should also add the query I am trying to write too.
This is what I have so far, yet it dosen't seem to work:


update artists
set artist = replace(artist, 'the', '')
where id = 21989
Reply With Quote
  #3 (permalink)  
Old 05-11-09, 21:21
urbn urbn is offline
Registered User
 
Join Date: May 2009
Posts: 3
Found it. I made a temp db from a copy of my live and was able to find what worked.

update tracks
set artist = (replace(`artist`, 'The ', ''))
worked just fine, though it was case sensitive which was also causing problems.
Reply With Quote
  #4 (permalink)  
Old 05-12-09, 03:54
mike_bike_kite mike_bike_kite is offline
vaguely human
 
Join Date: Jun 2007
Location: London
Posts: 2,519
Hopefully you don't have any music by The The.
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