Copy a table with all contents (without keys and restrictions)
select * into tablecopy from table
Copy a table without content (without keys and restrictions)
select top 0 * into tablecopy from table
, (), script, ( ). script, -,
insert into tablecopy select * from table
.
EDIT: , , - SQL Enterprise Manager, Query Analyzer, Management Studio.