More Questions Than Answers

Dan Atrill's blog site

MySQL Commands in brief

I was hunting for a few easy to follow commands for command line MySQL having been using Webmin and phpmyadmin for a while now. This site http://www.pantz.org/software/mysql/mysqlcommands.html came up trumps. Lots of other useful sysadmin stuff on there. Thanks pantz, you saved me hours.

more... »

Wed, December 16 2009 » MySQL » No Comments

Search and replace

In very few lines it’s possible to search and replace text in MySQL:
UPDATE table_name SET column_name = replace(column_name,”find_this”,”replace_with_this”)
Thanks to Torkil Johnsen’s Search and replace in MySQL article

more... »

Wed, August 8 2007 » MySQL » No Comments