I have a MySQL table:
CREATE TABLE IF NOT EXISTS users_data (
userid int(11) NOT NULL,
computer varchar(30) DEFAULT NULL,
logondate date NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Which is a large table with around 400 unique users and 20 computers, and around 20,000 entries from 5 years of users logging onto the computers.
I want to create a summary table that will list off the number of unique users per year per specific computer, in addition to how many of those users are new (i.e., no previous instances of logging on to any computer before that year, in addition to users who have no further instances of logging on to any computer in the future:
CREATE TABLE IF NOT EXISTS summary_computer_use (
computer varchar(30) DEFAULT NULL,
year_used date NOT NULL,
number_of_users int(11) NOT NULL,
number_of_new_users int(11) NOT NULL,
number_of_terminated_users int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT into summary_computer_use (computer, year_used)
select computer, distinct year(logondate) from users_data;
I can get the unique users per year:
UPDATE summary_computer_use as a
inner join (
select computer, year(logondate) as year_used,
count(distinct userid) as number_of_users
from users_data
group by computer, year(logondate)
) as b on a.computer = b.computer and
a.year_used = b.year_used
set a.number_of_users = b.number_of_users;
But I am stumped as to how to write a select statement that will find the number of users in a given year that are using a computer for the first time (no logon dates that occur earlier than that given year) or who never logon again.
Any suggestions?