HI if u want to get the same table structure which is already existing in ur database then SQL QUERY IS create table <table name> as select * from <table name which is already in DB> where 1 2;
If u want data also then create table <table name> as select * from <table name which is already in DB> ;