表格单元格中包含多个 bigint 列和decimal 列
我在数据库中有一个bigint 字段和一个decimal 字段,我想在reportingservices 的表格单元格中添加这些字段。
我的代码是这样的:
(Fields!dpr_unitprice.Value) * (Fields!dpr_PurchasedQuntity.Value)
但结果不正确。
我怎样才能得到正确的结果?
I have a field of bigint and a field of decimal in data base and i would like to multiple those fields in a tablecell in reportingservices.
My code is like this:
(Fields!dpr_unitprice.Value) * (Fields!dpr_PurchasedQuntity.Value)
but the result is not correct.
How can i get the correct result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的数据库引擎可能返回一个 bigint。
在将两者相乘之前,将 bigint 值转换为小数。
It might be that your DB engine is returning a bigint.
Cast the bigint value as a decimal before multiplying the two.
您必须将两个字段转换为您想要使用的单位,因此如果您想使用十进制,那么:
You have to cast both fields to the unit you want to work with, so if you want to work with decimal then: