标签: postgresql
我正在尝试使用公式更改整数字段的值,但它从不设置正确的值:
cost=1000
在这种情况下,price=1500所以我希望price=1000,但我得到{{1}}。
price=1500
price=1000
我在这里错过了Postgres的一些数学细微差别吗?
PostgreSQL 9.6.1
答案 0 :(得分:1)
整数师欺骗你。 50 / 100 = 0。试试50. / 100.,这会得到0.5的预期结果。
50 / 100 = 0
50. / 100.