I have prices stored as varchar written in Indian numbers, e.g. '١٨٠٠'
.
Is there a way to convert these data to standard integers e.g. 1800
?
input table
|price|
|١٨٠٠ |
|200 |
output table
|price|
|1800 |
|200 |
I tried FOMAT() with en_US locale but it returns zero