In my MySQL table I have a column called "weight". This column has the following values:
19.325
14.369
15.325
15.369
17.698
19.258
18.098
I simply need to do the sum, but when I run select sum(peso) from tabela
it returns me the value 119.44200000000001
instead of 119.442
.