SELECT *
INTO tableone
FROM tablezero
NOTE
1. Select into/Bulk copy option must be set for database
2. Primary Keys and Indexes will not be created for new table
Alternatively
CREATE TABLE tableone (col1, col2 .... coln)
INSERT INTO tableone
(col1, col2 .... coln)
SELECT col1, col2 .... coln
FROM tablezero
As wriiten this will not create Primary Keys and Indexes either but has the advantage that you can specify the PK during the create if required.
Far away is close at hand in the images of elsewhere.
Anon.