如何在选择查询中创建新列
在 MS Access 中,我想将新列插入到选择查询的返回结果中。新列的每一行都具有相同的值。例如,我的选择返回列 A、B,我希望 C 成为选择查询创建的新列:
A B C
----------
a1 b1 c
a2 b2 c
a3 b3 c
In MS Access, I want to insert a new column into the returned result of a select query. The new column has the same value for every row. For example, my select returns columns A, B and I want C to be the new column created by the select query:
A B C
----------
a1 b1 c
a2 b2 c
a3 b3 c
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这将在输出中添加一个名为“newfield”的列,其值将始终为“example”。
This will add a column called "newfield" to the output, and its value will always be "example".
这取决于您想对该列执行什么操作,例如,以下是将新列附加到可以在客户端更新的记录集的示例:
It depends what you wanted to do with that column e.g. here's an example of appending a new column to a recordset which can be updated on the client side: