INSERT INTO ANOTHER TABLE FROM CURRENT TABLE
You can make an empty version (copy) of a table by using CREATE TABLE.
Example:
CREATE TABLE journal2 LIKE tasktracker;
This example inserts two columns into the journal2 table from the tasktracker table.
insert into journal2 (cur_dttm, entry) select cur_dttm, entry from tasktracker;