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.
Declare @Precision INTEGER Set @precision = 3
-> 我在这里有一个 select 语句,它选择整数值
如果他们是我可以在数字数据类型中使用这个@precision的一种方式,例如像这样
numeric(20,@precision)
您想使用该str()功能(在此处记录)。
str()
它允许您将数字转换为字符串,同时控制精度。
例如:
select str(3.14158165, 5, 3)
退货'3.142'。
'3.142'