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.
我有存储过程想要将货币类型转换为十进制类型。
@money = 513.9010 type money
我想将其转换为decimal- 怎么做?
decimal
select convert(decimal(7,4),@money)