Moving data from table to table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a table that contains a lot of data, and I am now creating new tables
to split the data up. How do I do to only get some of the data in the old
table to a new one? For example one or two columns.
 
Falin said:
I have a table that contains a lot of data, and I am now creating new
tables to split the data up. How do I do to only get some of the data
in the old table to a new one? For example one or two columns.

Check help for "Append query".
 
SELECT Col1, Col2 INTO MyNewTable FROM myOldTable Where ifanycondition
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top