A Step-by-Step Guide To PostgreSQL Temporary Table

PHOTO EMBED

Tue Apr 04 2023 19:47:51 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira

CREATE TEMPORARY TABLE temp_table_name(
   column_list
);
Code language: PostgreSQL SQL dialect and PL/pgSQL (pgsql)
content_copyCOPY

https://www.postgresqltutorial.com/postgresql-tutorial/postgresql-temporary-table/