Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySQL には値が保存されてdecimal(11,2)おり、選択すると次の形式で値が返されます。
decimal(11,2)
10.00 100.00
この値をこの形式で返すことは可能でしょうか?
10,00 100,00
select replace(cast(100.00 as char), '.', ',')