looks good.

to check if data exists in Table_1 just use:
select count(*) from Table_1;

if you get at least an output of "1" then there is at least one row in the table.

then just use the:
create table Table_2
AS select *
from Table_1;