I'm part of a Toastmasters club, and just got put in charge of scheduling which members serve which roles in the weekly meetings. I'm writing a small app to help manage this, with the idea that a database can help me determine fairly which member is most overdue to serve in each role.
To simplify matters, let's say that my database has two tables... MEMBER and ROLE_PERFORMED:
MEMBER
------
ID int
NAME varchar
ROLE_PERFORMED
--------------
MEMBER_ID int (half of primary key, and also foreign key)
DATE date (other half of primary key)
ROLE int (0-11, mapped to an enumeration at the application layer)
My goal is to write a SQL query for each role type, which will give me:
MEMBER.NAME, for all rows in theMEMBERtableA second column, containing the most recent
ROLE_PERFORMED.DATEvalue matching that member and role... or else aNULL(or some other placeholder) if the member has never served in that role
I could then order by the date/placeholder column, and assign roles in order of who has gone the longest time without performing that role. Something like this:
ROLE NAME MOST_RECENTLY_PERFORMED
--------------------------------
1 John <null>
1 Joe 2010-02-25
1 Bob 2010-09-14
The approach I'm currently taking is to try a UNION... between one SELECT that grabs those members who have performed the role, and a second SELECT grabbing members who have never performed the role. Something like this:
SELECT m.name, r.date FROM member m, role_performed r WHERE m.id = r.member_id and r.role = 1
UNION
SELECT m.name, (NULL?????) FROM member m, role_performed r WHERE (?????)
There are three problems with this, however, for which I'm hoping someone may have solutions:
The first
SELECTgrabs all dates for which the member performed the role, not just the most recent.The second
SELECTcauses theUNIONto fail, because I can't find an acceptable placeholder value to use for the second date column... andUNION's require each query to return the same number of columns.The second
WHEREclause is simply beyond my limited SQL skills. How do you find allMEMBERrows, which do not have aROLE_PERFORMEDrows matching that member and that role? Bear in mind that there can still beROLE_PERFORMEDrows matching that member and some other role.
Like I said, I'm not the greatest SQL guru in the world... so I would welcome altogether different approaches if I'm making this more complicated than it needs to be. Heck, I would welcome a better question title to help meaningfully present what I'm asking! Thanks a lot in advance.