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.
Sql 数据类型是money,.Net 数据类型是十进制。我将 1.8714 发送到 sql 以插入数据,但 sql server 将其舍入为 1.8700。如何保存我的数据?以及如何在不四舍五入的情况下发送?
alter table <tablename> alter column <columnname> float
我将我的变量类型 decimal 更改为在 .Net 端浮动,它解决了。