I need remove dots and hyphens on a string on compare in Where clause.
This is my query now:
Select * from tbl_sometable where some_column in ('10000000000', '1999999999')
But, the some_column have values like this: '129.012.120-01' and I need filter the values too, like the values in a clause "in".
How I can do this? I using MySQL, I see an example using Translate, but not work in MySQL.
Thanks and best Regards.