I would like to replace any dot character in my query string, in SELECTthe input area from the database.
I will need to change a lot of queries, I want there to be a function that will work with all columns on SELECT. I mean something like thisSELECT DOT_TO_COMMA(*) FROM...
Now I have:
SELECT price, lastprice FROM products
OUTPUT: 22.10, 5.24
EXPECTATION: 22,10, 5,25
source
share