added new column no need to add data to old records

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

Guest

I added a new column to my database which has 4k records. How can i add the
new information to those 4k records without going line by line.
 
dasad said:
I added a new column to my database which has 4k records. How can i
add the new information to those 4k records without going line by
line.

What data are you adding? Is it all the same? If not how are you going
to identify what to add to what record?

If it is all the same, why add it to the table?
 
What you want is to run an update query on that table setting the field
to whatever you want... it can be calculated from other values in the
table, or selected out of another table based on some criteria...

You really will need to give more information if you need more specific
help.

Good luck,
Luke
 

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