English 中文(简体)
2008年:计算出分数字的分数为32。
原标题:SQL Server 2008 : calculate 32nd value of a give decimal number

请允许我举一个例子或公式,说明如何计算2008年服务器中特定数字中的32(32尺度)。

提前感谢。

最佳回答

根据我的理解,32个标准与占原始贷款1%的标准相同,因此简单地将数目划分为100个;通过分出3 200个标准。

问题回答

我不敢肯定我会完全理解你的问题,但如果你在第三十二位德奇马尔的席位上找到一位数位数的话,我会告诉你:

select substring(cast(@somedec as varchar(50)), CHARINDEX( . , cast(@somedec as varchar(50))) + 32, 1)

如果是not?





相关问题
Performance impact of indexed view in MS SQL Server 2008

Does anyone have experience with using indexed view in MS SQL Server 2008? I am trying to find out how does indexed view affect performance of insert / update statements, that are adding / updating ...

Lock Escalation - What s happening here?

While altering a table (removing a column) in SQL Server 2008, I clicked the Generate Change Script button and I noticed that the change script it generated drops the column, says "go" and then runs ...

Round to nearest 5 in SQL Server

I have a Money column in my SQL Server 2008 table. In my below query how can I round it to nearest 5$ select FineAmount from tickets Thanks

热门标签