标签: java hibernate postgresql
我想将数字存储在postgres数据库中,例如1.5,3,14.4。因此,只有最多一个分数的数字。
postgres
1.5
3
14.4
我应该为这些数字使用哪种java类型? float或double或bigdecimal?我怎样才能将分数的数量限制为一个?
float
double
bigdecimal