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.
我的数据库表中有一个字段,类型为:double
double
如何存储这样的值:0,001?
我已经尝试过了,但它被截断为0,00。
您可以将小数位数设置为表格定义的一部分:colname double(4,3)允许小数点前一位和小数点后三位。
colname double(4,3)