single sql, multiple schemas, one result set

Поиск
Список
Период
Сортировка
От PegoraroF10
Тема single sql, multiple schemas, one result set
Дата
Msg-id 1522777660304-0.post@n3.nabble.com
обсуждение исходный текст
Ответы Re: single sql, multiple schemas, one result set  (Guyren Howe <guyren@gmail.com>)
Re: single sql, multiple schemas, one result set  (Rob Sargent <robjsargent@gmail.com>)
Список pgsql-general
Suppose a DB with dozens of schemas with same structure.
DB
  Schema1
    Table1
    Table2
  Schema2
    Table1
    Table2
  Schema3
    Table1
    Table2
Then we want to execute a SQL on specific schemas and the result of it could
be a UNION ALL. So, how could be a function that runs that SQL on each
schema and results just on result set ?

Then I would use something like ...
select * from SQLFromMultipleShema(Array['Schema1,Schema3'],'select count(*)
from Table2');




--
Sent from: http://www.postgresql-archive.org/PostgreSQL-general-f1843780.html


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

Предыдущее
От: Paul Jungwirth
Дата:
Сообщение: Re: How to get an inclusive interval when using daterange
Следующее
От: Guyren Howe
Дата:
Сообщение: Re: single sql, multiple schemas, one result set