I have a postgresql database and am using it for a project which handles monetary value. My question is: How do I limit the number of decimal digits to two for a Double Precision or float8 type column in a postgresql table?
|
|
|
Simply use The first number (10) defines the total length of the number (all digits, including those after the decimal point), while the second number (2) tells how many of them are after the decimal point. The above declaration gives you 8 digits in front of the point. Of course, you can increase that - the limitations of the In my opinion there is no need to use floating point when you handle currencies or other monetary-related values. I have no idea about the performance comparison between the two types, but |
|||||||||
|