fill entire column with same data, thousands of records

D

Douglas J. Steele

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.
 
K

Ken Sheridan

Execute a simple update query:

UPDATE SomeTable
SET SomeColumn = "SomeValue";

but why would you want to do this?

Ken Sheridan
Stafford, England
 
Top