how do i copy the same cell in a full column

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

Guest

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?
 
You would create and run an update query.

UPDATE SomeTable SET SomeField = "some word";
 
sparker said:
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?

Joan told you how, I am going to ask "Are you sure you want to do this?"

It sounds like you are not using a database properly. You should never
need all the records to contain the same data, unless you are going to
change it in the future.
 

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