bloody error
MySql Replace word by SQL Query
Do you know that You CAN replace MySql field values by SQL query? it’s pretty simple. Use update Command with “replace” to set value to field:
UPDATE table_name SET table_field = REPLACE(table_field,'replace_string','with_this_string');
Not only this, you can do whole lot of other things without having to write any programes (php, asp etc) to do some trick with MySql DB contents
Have a look: http://dev.mysql.com/doc/refman/5.0/en/string-functions.html (MySql 5+)
Recent Comments
- Charles on Object doesn’t support this property or method
- Lucas on PHP : get Request protocol Http or HTTPS
- Chris on Split & Concat Snow Leopard Error : (-2753) The variable thePanel is not defined
- Get url with protocol, http or https – Richard Choi on PHP : get Request protocol Http or HTTPS
- daGrevis on PHP : get Request protocol Http or HTTPS







