To create a table new_table as a blank copy of another table called another_table, use:
create table new_table like another_table;
Of course you can populate new_table with the contents of another_table like so:
insert into new_table select * from another_table;
You can combine these into one step! But, unlike the two-step method this way has the serious limitation of losing any of the indexes on the original table:
create table new_table select * from another_table;
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment