fill entire column with same data, thousands of records

  • Thread starter Thread starter Guest
  • Start date Start date
Did you have a question? Please note that these newsgroups are manned by
real people, not machines.

Since I have to guess at what you what, I'll say you need an Update query.
 
Execute a simple update query:

UPDATE SomeTable
SET SomeColumn = "SomeValue";

but why would you want to do this?

Ken Sheridan
Stafford, England
 

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