I have the following table
CREATE TABLE account (
account_id bigint(20) NOT NULL AUTO_INCREMENT,
time_start datetime NOT NULL,
time_end datetime DEFAULT NULL,
PRIMARY KEY (account_id),
KEY idx_start (account_id,time_start),
KEY idx_end (account_id,time_end)
) ENGINE=MyISAM
how can I write a query to find how many users log on monthly? I want to find for the last 90 days how many different account_id are in the table group by month. Group by month means here every 30 days: for example from 2011-12-05 to 2011-11-06, from 2011-12-04 to 2011-11-05 and so on for the last 90 days.
May be it is not really clear what I mean here, but I need any help
Thank you