This seems to be the easiest thing, but I cannot find any information on this.
I have a table with a number field Kellyfraction.
SELECT kellyfraction FROM ddbets;
displays the values as expected with as many decimals as they are stored.
SELECT Sum(kellyfraction)FROM ddbets;
displays the sum rounded to two decimals.
How do I get the result of teh sum function to be displayed with the number of decimals to my liking?