I'm using a Postgresql database in Azure, but when I use the temporary table, an error occurs stating that it's not allowed.
The example code is:
select * into temptable from act_hi_taskinst
And error is:
SELECT ... INTO is not allowed here
I also tried as informed on the link https://www.postgresqltutorial.com/postgresql-select-into, but I still have the same error.
Does anyone have an idea of how to solve this? Thanks