Karthick Kumar
Karthick Kumar

Reputation: 77

how to remove special character in database?

How to convert Banks’ to bank's in db. all records to add Banks’ like this. how can print with Banks’ in screen.

Upvotes: 0

Views: 706

Answers (1)

Tushar
Tushar

Reputation: 3623

You can use

 SELECT REPLACE('Banks’', 's’', ''\s') from table_name

Upvotes: 1

Related Questions