wtraylor
02-22-02, 18:32
| Hi guys, I'm having some trouble crafting a select query without using a sub select. Here's what I want: SELECT organizations.name from organizations WHERE organizationID NOT IN (SELECT organizationID FROM lanAdmin_organization_relations WHERE lanAdminID=7); I want to list all of the organizations that the lanAdmin with lanAdminID=7 is NOT a part of, based on the lanAdmin_organization_relations table. Any ideas on what sort of joins I can use? Thanks! --Walker |