Deleting information but keeping certain columns

M

mary

Is there a way to delete a row, but keep information in
certain columns of that row. Like delete the name,
address, and city information but keep the state and zip
information.
 
J

John Vinson

Is there a way to delete a row, but keep information in
certain columns of that row. Like delete the name,
address, and city information but keep the state and zip
information.

Turn your thinking around.

A Delete query deletes an entire record, or nothing at all; not in
between.

What you want is an Update query updating the name, address, and city
fields to NULL.

This would be a rather strange thing to do, of course; if you just
want to *see* the state and zip, and might want the name and address
again later, simply create a query selecting only those fields.
 

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

Top