I have a large database which contains records that have tags in them and i would like to remove them. Of course there is the method where i create a php script that selects all ... strip_tags a update the database, but this takes a loong time. So how can I do this whit a simple (or complicated) Mysql query? Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I don't believe there's any efficient way to do this in MySQL alone.

MySQL does have a REPLACE() function, but it can only replace constant strings, not patterns. You could possibly write a MySQL stored function to search for and replace tags, but at that point you're probably better off writing a PHP script to do the job. It might not be quite as fast, but it will probably be faster to write.

link|improve this answer
yes probably you are right :( – faq Oct 4 '11 at 22:06
feedback

Your Answer

 
or
required, but never shown

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