如何使用 MS Access 2007 更改 MS Access 97 文件的查询
我正在使用 access 97 db 的程序中添加一个小功能。
更改是在表 A 中添加一个字段。
有一个查询从该表中选择某些字段。现在我也需要在该查询中添加该字段。
我已使用查询生成器屏幕中的 DDL SQL 语句添加了该字段。但现在我也需要在查询中添加相同的字段...
那么我现在可以做什么来更改该查询的字段列表?
注意:
- 如果我将 97 db 转换为 2007 或其他版本,我还必须更改代码以及报告工具。因此,对于微小的更改,我想保留相同的旧格式。
- 任何可用于从 2007 年转换回 97 的工具也是可以接受的。
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:
- If i convert the 97 db to 2007 or other version I would have to change the code as well as the reporting tool also. So for small minor change I would like to leave it in same old format.
- Any tool available for conversion back to 97 from 2007 would also be acceptable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然后查看此解决方案
使用 VBA 重新定义查询的 SQL
请注意,
CurrentDb
变量指的是您的DAO 数据库对象(OpenDatabase 的结果)
您应该进行设置。
Then see this solution
Redefine a query's SQL using VBA
Note that the
CurrentDb
variable refers to yourDAO database object (the result of OpenDatabase)
You should be set.