Re: Can we generate a series of tables in a loop and then use another loop to union all?

Поиск
Список
Период
Сортировка
От Frank Gard
Тема Re: Can we generate a series of tables in a loop and then use another loop to union all?
Дата
Msg-id e0288eb1-5d3e-266a-6d1f-a4468786c53e@familie-gard.de
обсуждение исходный текст
Ответ на Can we generate a series of tables in a loop and then use another loop to union all?  (Shaozhong SHI <shishaozhong@gmail.com>)
Список pgsql-sql

Hi,

you can use PL/pgSQL's "EXECUTE" to do such things.

Cheers,
Frank.

Am 13.10.22 um 17:44 schrieb Shaozhong SHI:
Can we do the following?

for j in 1..max loop
create table j as select .............
end loop;

Then,  We do 


Alternatively, can we generate an empty table and append each newly generated table to it so that we end up with a whole table?

Regards,

David

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

Предыдущее
От: Shaozhong SHI
Дата:
Сообщение: Can we generate a series of tables in a loop and then use another loop to union all?
Следующее
От: Shaozhong SHI
Дата:
Сообщение: How to union all tables in a schema into one whole table?