PopSQL
Sometimes it's useful to duplicate a table:
create table dupe_users as (select * from users); -- The `with no data` here means structure only, no actual rows create table dupe_users as (select * from users) with no data;
Spread the word