Averages/Arithmetic mean: Difference between revisions

m
SQL simplification
No edit summary
m (SQL simplification)
Line 2,953:
select sum("datapoint")/count(*) from "numbers";
</lang>
...or...
<lang SQL>select avg("datapoint") from "numbers";</lang>
 
=={{header|Standard ML}}==
These functions return a real:
Anonymous user