This article is tagged with:
Temp table in postgresql
and mysql
temp table in postgresql
CREATE TEMP TABLE temp_table(
...
);
temp table in postgresql
CREATE TEMPORARY TABLE temp_table_name(
column_list
);