SELECT replace(the_column,'.',',') AS the_column FROM the_table;
示例
DROP TABLE IF EXISTS the_table;
CREATE TABLE IF NOT EXISTS the_table (the_column);
INSERT INTO the_table VALUES('100.450'),('200.560'),('300.670');
SELECT replace(the_column,'.',',') AS the_column FROM the_table;