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.
Float java 类型和 postgresql 类型之间的映射是什么?我尝试过使用数字,但我事先不知道精度有多大
您可以使用numeric没有精度和比例的一般。
numeric
或real用于 4 字节浮点数和double8 字节浮点数。
real
double
postgres 数字类型的详细信息here
here