Re: How would I write this query...

Поиск
Список
Период
Сортировка
От Guy Rouillier
Тема Re: How would I write this query...
Дата
Msg-id D4D1632DC736E74AB95FE78CD609007901260D@mtxexch01.add0.masergy.com
обсуждение исходный текст
Ответ на How would I write this query...  ("Jim Fitzgerald" <jfitz@spacelink.com>)
Ответы Re: How would I write this query...  ("John D. Burger" <john@mitre.org>)
Re: How would I write this query...  (Alban Hertroys <alban@magproductions.nl>)
Список pgsql-general
Jim Fitzgerald wrote:
> Hi -
>
>   I have two tables, one of them has names of people and an associated
> integer ID.  The other table is a list of the people (from the first
> table) by their ID number that have signed up for a class.  How would
> I write a query that would list all the people from the first table
> that do not have any entries in the second table?   Basically, I want
> a listing of all my people who have not signed up for the class.

select *
from people
where id not in
(
select id
from class_registration
)

--
Guy Rouillier


В списке pgsql-general по дате отправления:

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: Is PostgreSQL an easy choice for a large CMS?
Следующее
От: Philip Hallstrom
Дата:
Сообщение: Re: Is PostgreSQL an easy choice for a large CMS?