1
vote
SQL query for cumulative frequency of list of datetimes
Create a table containing what intervals you want to be getting totals at then join the two tables together.
Such as:
time_entry.time_entry
-----------------------
2008-10-0 …
0
votes
SELECT from SQL
To deal with the 0 population division by zero, I'd suggest using a CASE statement
SELECT
Name, …
