Replace and update in mysql query



 Table Name=packers

Column=contactNo

8964828952,8964828951

8964828952,8964828951

want to replace every  8964828952 to 9109595911 from contctNo column

UPDATE packers SET contactNo = REPLACE(contactNo, '8964828952', '9109595911')

Comments

Popular posts from this blog

Target class controller does not exist - Laravel 8