Vijay's Blog
I am not your BEST, But I will try
Tuesday, July 14, 2020
Mysql : replace special characters or any words in perticular column in UPDATE statement
Replace # symbol with empty in the given column.
SET SQL_SAFE_UPDATES = 0;
update table_name set col_name = replace (col_name,'#','');
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment