I have approx. 60000 rows with street address in my db that contain short version of the actual street address eg.

Svarvarg. 11
Kungsg. 10
Stora g. 19

"g." is a abbreviation of "gatan" and this creates problems within my application. So what I want do to is to Select all rows that contain "g." and replace "g." with "gatan" Eg.

Svarvarg. 11 -> Svarvargatan 11
Kungsg. 10 -> Kungsgatan 10
Stora g. 19 -> Stora gatan 19 

The selection of all street address that contain "g." is simple but I can't figure out how to do the replacement in SQL. Could you please help me with that.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

just use

UPDATE table SET column = REPLACE(column, 'g.', 'gatan') WHERE ...

See this documentation http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_replace

link|improve this answer
Thank you, you were first! SQL STATEMENT: UPDATE Company SET streetAddress = REPLACE(streetAddress, 'g. ', 'gatan ') WHERE streetAddress LIKE "%g.%"; – jakob Jun 14 '11 at 9:31
feedback

Something like this?

update table
set ColumnName = replace(ColumnName, 'g.', 'gatan')
where ColumnName like '%g.%'
link|improve this answer
feedback
UPDATE Foo SET Street = REPLACE(Street, 'g. ', 'gatan ')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.