Delete all Data in a column in a table

  • Thread starter Thread starter Sierras
  • Start date Start date
S

Sierras

Is there an easy way to delete all the data in a specific column on a
single table? I want the rest on the data in that table to stay the
same.
 
Is there an easy way to delete all the data in a specific column on a
single table? I want the rest on the data in that table to stay the
same.

Run an update query:

UPDATE YourTable SET YourTable.FieldName = Null;
 

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