Enter Data in a Blank Field with 43,000 records

  • Thread starter Thread starter Guest
  • Start date Start date
You can use an UPDATE Query to do this. If you want to add an single
Supplier name then the SQL is something like:

UPDATE [YourTable]
SET [SupplierField] = '{Supplier Name}'

If you want to add different supplier names, the you have to work out the
algorithm to set the correct SupplierName for each Record.
 
mjsull said:
Would like to add supplier information to each record.

I am curious. If you are adding the same data to 43,000 records it
sounds like poor database design. If you want to add different information
to different records, maybe you should give us more information so we can
offer a better answer.
 

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

Similar Threads


Back
Top