|
|
|
|
|
by JoelJacobson
3374 days ago
|
|
Can someone explain why float is "better" than numeric in this example? pg1:joel=#* select 1/7::numeric7;
?column?
------------------------
0.99999999999999999998
(1 row) pg1:joel=# select 1/7::float*7;
?column?
----------
1
(1 row) |
|