Re: Querying the same column and table across schemas

Поиск
Список
Период
Сортировка
От Daniel J. Summers
Тема Re: Querying the same column and table across schemas
Дата
Msg-id 4B916284.3040401@djs-consulting.com
обсуждение исходный текст
Ответ на Querying the same column and table across schemas  ("John A. Sullivan III" <jsullivan@opensourcedevel.com>)
Ответы Re: Querying the same column and table across schemas  ("John A. Sullivan III" <jsullivan@opensourcedevel.com>)
Список pgsql-admin
On 03/05/2010 07:44 PM, John A. Sullivan III wrote:
> I'm trying to avoid making a thousand call like
>
> select user1.session_id from user1.sessions;
>
> when I could do it in a single query especially since the database is
> remote and secured with SSL.
>
CREATE VIEW all_sessions AS
SELECT user1.session_id, 1 as user_number
FROM user1.sessions
UNION
SELECT user2.session_id, 2 AS user_number
FROM user2.sessions
UNION
...more schemas...

Then, "SELECT * FROM all_sessions" would show you each session ID (and,
with the user_number field, what user - you could use a string literal
there too).  Of course, the user creating and running this would need
SELECT privileges on each schema's "sessions" table.


Daniel

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

Предыдущее
От: "John A. Sullivan III"
Дата:
Сообщение: Querying the same column and table across schemas
Следующее
От: "John A. Sullivan III"
Дата:
Сообщение: Re: Querying the same column and table across schemas