There is a table MovementGoods, in it the fields Date_, Count_. The first field of the date type, the second numeric. I am writing this query:
SELECT Sum(MovementGoods.Count_) AS [SumCount] FROM MovementGoods GROUP BY [SumCount];
It would seem easier nowhere, but nevertheless, it does not work. There is a summation of numeric values and grouping by SumCount field. What is the problem?