I\'m not sure if I can use select into to import data from another table like this:
select * into bookmark1 from bookmark;
Is it tru
create table NewTable as select * from OldTable where 1 <> 1
This will copy data structure for you.