Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

10 строки
269 B
Plaintext

create temp table <temp-table-name> as
select * from <other-table> with no data
on commit <delete|preserve|drop>;
# no constraints/indexes are auto-created
create temp table <temp-table-name>
(like <other-table> including constraints including indexes);