int 转成decimal 数据类型的过程?
我有一个 int(11)
列,用于存储资金。我读了一些关于 SO 的答案,似乎我只需要将其更新为 decimal (19,4)
数据类型。
在实际进行转换之前,有什么我应该了解的问题吗?我的应用程序是在 PHP/Zend 中,并且我没有使用 ORM,所以我怀疑我是否需要更新任何类型的类来一致地识别数据类型。
I have an int(11)
column which is used to store money. I read some of the answers on SO and it seems I just need to update it to be a decimal (19,4)
data type.
Are there any gotchas I should know about before I actually do the converting? My application is in PHP/Zend and I'm not using an ORM so I doubt I would need to update any sort of class to consistently identify the data type.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您将 int 更改为十进制时, dd 不会有任何问题。但是您应该检查您的 PHP 代码,以确保您的代码能够正确使用十进制值。
You don't have any problem with dd when you alter int to decimal. But you should review your PHP code to ensure that your code works with decimal value correctly.