Basically, I need to add a prefix OR a suffix to the contents of a cell for all records.
Example Column name "mobile_number " in table name tableName with 5000 records...
mobile_number
0123456789
0987654321
0125556789
0123456999
I need to add the prefix "88" as a country code to all records so that it looks like this after SQL query runs...
mobile_number
880123456789
880987654321
880125556789
880123456999
For SELECT the query use
Example Column name "mobile_number " in table name tableName with 5000 records...
mobile_number
0123456789
0987654321
0125556789
0123456999
I need to add the prefix "88" as a country code to all records so that it looks like this after SQL query runs...
mobile_number
880123456789
880987654321
880125556789
880123456999
For SELECT the query use
select concat('Prefix', mobile_number , 'Suffix')
from theTable;
For Update
update tableName
set mobile_number = concat('88', mobile_number );
For prefix and Suffix both or only prefix/suffix
update tableName
set mobile_number = concat('Prefix', mobile_number , 'Suffix');