Dev__
03/28/2022, 8:01 AMTemporaryData
and Data
. Is there an easy way to copy the rows from TemporaryData
to the Data
table? The model structure will be exactly the sameNurul
03/28/2022, 11:19 AMCREATE TABLE mycopy AS
SELECT * FROM mytable;