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), '.', ',')