hey i need a way to get a formated number from my column decimal(23,2) NOT NULL DEFAULT '0.00'
in php i could use this function number_format('1111.00', 2, ',', '.');
it would return 1.111,00
(in Germany we use , to define decimal numbers)
how would i do this in mysql? with string replaces?