create table with same structure from other table

saran

New member
Local time
Today, 09:00
Joined
Sep 22, 2008
Messages
5
I want a query which creates a table with the same structure as other table.

Reply me plz. Thanks in advance
 
Hi,
there are two method of creating the same table
i.e By using Make Table query i.e
first select the table which ever you can to copy in the design view and then select Query->MakeTable and then type new table name ..New table will be created.
second: by using the SQL view
tablename_old is the existing table.
tablename_new is new table that you want .
select columnname into tablename_new from tablename_old

Might be this will help you.
 

Users who are viewing this thread

Back
Top Bottom