Find and Replace in SQL Databases PDF Print E-mail
Written by Pastor Tim   
Friday, 02 May 2008 20:29

Most of us have used the find and replace function in word processors, but is there a similar feature for finding and things in SQL databases? Yes there is.

First of all, as is always the case, make sure you backup your SQL Database in case something unexpected occurs (especially errors between your keyboard and your seat) while you are working on it.

Next run your database find and replace operation based on the SQL command below:

update TABLENAME SET FIELDNAME = REPLACE(FIELDNAME, 'FIND','REPLACE')

So for instance, let's say that within your database you have a table named "articles" and in that table there is a field named "introduction". If you want to replace (in that field) every occurance of the word "free" with "almost free", the SQL command would look like this:

update articles set introduction = replace(introduction, 'free','almost free')

Just remember to be very careful when you "find and replace" things in your database or you may end up finding and replacing more than you want. The above example will also change everwhere "freedom" occurs to "almost freedom" and you might find your options to repair that mistake to restoring your backup.

feed0 Comments

Write comment
 
 
quote
bold
italicize
underline
strike
url
image
quote
quote
smile
wink
laugh
grin
angry
sad
shocked
cool
tongue
kiss
cry
smaller | bigger
 

security image
Write the displayed characters


busy
Last Updated ( Friday, 02 May 2008 23:04 )
 
Joomla 1.5 Templates by Joomlashack
The Christian Counter