how do i copy the same cell in a full column

S

sparker

I have a databas with thousands of entries. I would like one column to have
the same word. how do i paste the same word in the column?
 
J

Joan Wild

You would create and run an update query.

UPDATE SomeTable SET SomeField = "some word";
 
Top