货币数据类型精度 - SQL Server (SSMS)
在sql server management studio中,数据类型-金钱,当我输入带有小数的金额时,它会自动添加零以填充到百分之一。如何确定小数点后的空格数?
In sql server management studio, data type- money, when I enter an amount with a decimal it automatically adds on zeros to fill up to the hundredths. How can I determine the amount of spaces after the decimal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
点后面零的数量称为数据类型的精度。
money
数据类型具有固定精度:即点后面五位数字。如果您想要不同的精度,请使用
decimal
数据类型。一些例子:这打印:
The number of zeroes behind the dot is called the
precision
of a datatype. Themoney
data type has a fixed precision:That's five digits behind the dot. If you'd like a different precision, use the
decimal
datatype. Some examples:This prints: