Retrieve running-total record growth over time in mysql
I have a Drupal site which has a table that keeps track of users. What I want to do is graph membership growth over time. So I want to massage mysql into returning something like this: date | # of users (total who have registered up to the given date) 1/1/2014 | 0 1/2/2014 | 2 1/3/2014 | 10 Where '# of users' is the total number of users that have registered accounts up to the given date (running-total)--NOT the number of users who registered on that particular day (which is trivial to retrieve). Each row of my {users} table has a uid column, a name column, and a created (timestamp) column. So