update table in query

C

Chuck

I have many queries using a particular - say tbl1. If a new field is added
to the tbl1, is there any way to update all queries dependent on it? It is
a pain to have to go in and remove old-tbl1 and add new-tbl1.

Thanks
Chuck
 
B

Brendan Reynolds

Only by using "SELECT * FROM ..." to select all fields in the table, which
is not always desirable. You should not have to remove the table and add it
again in query design view, though, if that is what you mean. You should be
able to open the query in design view and simply double-click the name of
the new field to add it as a new column in the query.

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.
 
C

Chuck

Brendan,

Thanks for the response.
You should be able to open the query in design view and simply
double-click the name of the new field to add it as a new column in the
query.
That's my problem. Once in a while, when I add a field to a table, and look
at a previous query in Design Mode, the new field is shown. But the
majority of the time, in order to see the new field in a query dependent
upon that table, it is necessary to remove the table from the query and
re-insert it ... or create a new query.

Chuck
 
Top