posted: 2005-05-08 10:10:00 perma-link, RSS comments feed
I think this picture scares me as much as Beth.
This kid seems a little concerned too.
Based upon your reading habits, might I recommend: Or, you might like: |
hosting: slicehost.com.
powered by: django.
written in: python.
controlled by: bzr.
monsters by: monsterID.
You've been exposed to: {'Life': 1}
Kazakami commented, on September 20, 2012 at 6:55 p.m.:
Three tables:person (id int, name varahcr)job (id int, title varahcr)person2job (person int, job int)Then add one row per allowed person/job combination in person2job.All people who can do, say, washing up is then expressed byselect p.name from job j inner join person2job p2j on j.id = p2j.job inner join person p on p2j.person = p.id where j.name = washing up'or if you already know the job id rather than its name, that simplifies toselect p.name from person2job p2j inner join person p on p2j.person = p.id where p2j.id = $known_id