

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can REPLACE() be used with UPDATE clause to make permanent changes to a table?
As we know that REPLACE () function is used to replace the occurrences of a substring with another substring within a string. We can also use the REPLACE function with the UPDATE statement to update the table. Following example will demonstrate it −
Example
mysql> Update Student set Father_Name = REPLACE(Father_Name, 'Mr.','Shri '); Query OK, 5 rows affected (0.06 sec) Rows matched: 5 Changed: 5 Warnings: 0 mysql> Select Name, Father_Name from Student; +---------+-----------------+ | Name | Father_Name | +---------+-----------------+ | Gaurav | Shri Ramesh | | Aarav | Shri Sanjay | | Harshit | Shri Lovkesh | | Gaurav | Shri Ramchander | | Yashraj | Shri Mohan | +---------+-----------------+ 5 rows in set (0.00 sec)
The above query has updated the column Father_name by finding ‘Mr.’ and replacing the same with ‘Shri’.
- Related Questions & Answers
- How can MySQL REPLACE() function be used with WHERE clause?
- How LOCATE() function can be used with MySQL WHERE clause?
- How can CONCAT() function be used with MySQL WHERE clause?
- How can CONCAT_WS() function be used with MySQL WHERE clause?
- How can MySQL find and replace the data with REPLACE() function to UPDATE the table?
- How MySQL LTRIM() and RTRIM()functions can be used with WHERE clause?
- How can Tensorflow be used with Estimator to make predictions from trained model?
- How can group functions be used in ORDER BY clause?
- How Groups function can be used in MySQL SELECT clause?
- Can a number be used to name a MySQL table column?
- How BEFORE UPDATE triggers can be used to emulate CHECK CONSTRAINT for updating values in the table?
- How can TensorFlow be used to make predictions for Fashion MNIST dataset in Python?
- How can Tensorflow be used with Estimators to perform data transformation?
- How can Tensorflow be used with Estimators to optimize the model?
- How can Tensorflow be used with abalone dataset to build a sequential model?
Advertisements