标签: sql vba decimal recordset
我有这样的事情......
Set rs = .... rs.Addnew ... rs.price = 48 --->the type of price field in SQL is DECIMAL(18,4) ... rs.Update
在更新之后,我会查看SQL中的新行,而price列中的值现在为480000.0000。
price
为什么在整数部分添加4个零?