I'm am inserting rows from one table to another using presto, and would like the inserted rows to be returned. Something like this...
Something like:
insert into animals
select * from arriving_animals
returning *
It appears returning is not supported in presto. Any advice on how to return the rows that are inserted within the same statement?