Unlike the pure mathematical real numbers, or even the rational numbers, the floating-point number types are not commutative-associative. This means, as is commonly known in numerical coding, the order of a list of floating-point numbers affects the value of the floating-point sum. It can be a good idea to sort the list to put the smaller numbers first before adding up.
An SQL table does have an order. And this can be specified in an order-by clause.
Does the SQL engine sum a field in the order given in the order-by clause?
Can I force the SQL engine to add up starting with the smallest first by sorting a list of positive floating point numbers in ascending order?
Can I force the engine to add up largest first? Or is the order of summation not dependent on the order of the tables? Or perhaps the summation order is related to the order-by order in a complicated and indeterminate manner?
I recognize that this might depend on the choice of SQL engine. My core interest is in SnowFlake.