I have some car model and I want them to replace with other random number.
KMAL
UT
NC
WI
KMMA
KMKS
MA
MI
KMNJ
KMAR
TN
NH
AK
OK
KMWA
KMNY
KMMI
KY
I want these to be replaced with some other random name. I can either run the below query each time to replace, but it is time consuming.
update
table
set column=REPLACE(column, 'KMAL', 'LAMK')
Any other way I can do it in one go.