SQL

How to append prefix to existing value in a field using sql query?

How to append prefix to existing value in a field using sql query?, someone asked me to explain?
SQL

In this article, I describe how to append prefix to all existing value in a field using sql query. Here I am adding ‘+’ prefix to countrycode in a country table.

 
UPDATE [masters].[country] SET Countrycode = '+' +Countrycode

Output

+91

+971

+961

Post your comments / questions