Pario TechnoBlob
About Posts

Tag: MySQL

Howto backup mysql stored functions and stored procedures This is how you can backup you MySQL database(s) and stored procedures # mysqldump --routines <dbname> Or you can backup only the stored procedures # mysqldump...
Nov 2, 2009 10:28PM
mysql alternative to PHP substr_count function The substr_count function in PHP counts the number of substring occurrences. This post describes how to create a mysql stored function to behave just like PHP’s substr_count...
Oct 23, 2009 5:05PM
Howto combine two columns into one in mysql This is how you can combine (or concatenate or merge) data from two table columns into one column using a mysql SQL query. SELECT CONCAT(firstname,lastname) AS 'name' FROM...
Sep 6, 2009 11:10PM
MySQL search and replace This is a simple SQL query to perform search and replace in a MySQL table update tablename set fieldname = replace(fieldname,'search_for_this','replace_with_this');
Dec 14, 2008 11:17PM
«« « 1 2 3  …  8 » »»
Posts About
© 2007-2020 Pario TechnoBlob
Powered by Axiom