SQl Find & Replace Query - Google Search

PHOTO EMBED

Thu Oct 06 2022 13:14:28 GMT+0000 (Coordinated Universal Time)

Saved by @satish021 #sql

##sql query with replace function
#syntax
UPDATE tableName
SET  column_name = REPLACE(column_name, 'fromStringValue', 'toStringValue');

#Example 
Update  tbl_employee
Set designation = REPLACE(designation, 'SEO', 'Developer');
content_copyCOPY

https://www.google.com/search?newwindow