Re: Select where A is not a member of B

2001-09-10 Thread Benjamin Pflugmann
Hi. On Mon, Sep 10, 2001 at 02:38:56PM -0700, [EMAIL PROTECTED] wrote: [...] > I need to find, for each user, whether they are a member of list n : > > ++--+ > | userid | memberoflist | > ++--+ > | 1 | true | > | 2 |false | > |

Re: Select where A is not a member of B

2001-09-10 Thread Carl Troein
[EMAIL PROTECTED] writes: [snipped fscking ML bullshit] > database,sql,query,table > > > David Otton writes: > > > Users that belong to some lists, but not the one I'm interested in : > > this is the one that I'm stuck on. Any thoughts? Suggestions? > > SELECT DISTINCT userid FROM userlist

RE: Select where A is not a member of B

2001-09-10 Thread Johnson, Gregert
SELECT DISTINCT u.userid, IF( ul.listid, "true", "false") FROM user u LEFT OUTER JOIN userlist ul ON u.userid = ul.userid AND ul.listid = ; -Original Message- From: David Otton [mailto:[EMAIL PROTECTED]]