Reputation: 17643
I am adding a small feature in a program that uses access 97 db.
The change is to add a one single field in a table A.
There is one query which selects certain fields from that table. Now I need to add the field in that query too.
I have added the field using DDL SQL statment from query builder screen. But now I need to add the same field in query too...
So what can I do now to make the change in the field list of that query?
Note:
Upvotes: 1
Views: 290
Reputation: 3881
Then see this solution
Redefine a query's SQL using VBA
Note that the CurrentDb
variable refers to your
DAO database object (the result of OpenDatabase)
You should be set.
Upvotes: 1