Re: ORDER BY question

Поиск
Список
Период
Сортировка
От Nabil Sayegh
Тема Re: ORDER BY question
Дата
Msg-id 1062403020.32576.4.camel@billy
обсуждение исходный текст
Ответ на ORDER BY question  ("Luis H." <pgsql-novice@geekhouse.no-ip.com>)
Список pgsql-novice
Am Mo, 2003-09-01 um 03.44 schrieb Luis H.:
> I have two tables, table A contains users (id, username, password) , and
> table B contains a row that signifies the 'owner' of each particular entry,
> referencing an id in A.
>
> so example
>
> table A
> id  username password
> ------------------------
> 1   me           *****
> 2   you          *******
>
> table B
> description           owner
> -------------------------
> 'something cool'   2
> 'another thing'      1
>
>
> What I want to do is do a query where I order table B by owner, but
> alphabetically by username. The problem, obviously, is that table B only
> contains id's (numbers, indexing to A), which don't correspond to the
> alphabetical order of the usernames.

SELECT * FROM a JOIN b ON (a.id=b.owner) ORDER BY a.username
or
SELECT * FROM a, b WHERE a.id=b.owner ORDER BY a.username

If you had the columnnames the same in A and B for the id you could do:
SELECT * FROM a JOIN B USING (id_a) ORDER BY a.username

> I'm not very familiar with subqueries, but I expect I should be able to
> somehow select ID's from table A ordered by username, and use this index to
> order table B by owner.

No need for subselects here

--
 e-Trolley Sayegh & John, Nabil Sayegh
 Tel.: 0700 etrolley /// 0700 38765539
 Fax.: +49 69 8299381-8
 PGP : http://www.e-trolley.de


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

Предыдущее
От: Oliver Fromme
Дата:
Сообщение: Revoke access on pg_user
Следующее
От: David Rickard
Дата:
Сообщение: Re: Configure Errors--Missing Libraries?