将具有重复默认数据的列插入到查询中
使用 MS Access 执行“简单”任务。
SELECT Users.UserName, Users.ID, Record.Course
FROM Record INNER JOIN Users ON Record.Name = Users.Username;
我需要的是输出的另外两列。一种只写着“Add”,另一种则写着“Role2”。每行的这些都是相同的。
因此,如果最初查询拉出一条看起来像这样的行:
smith,ABC123,DEF-100
jones,ABC456,DEF-101
我希望它改为输出:
Add,smith,ABC123,Role2,DEF-100
Add,jones,ABC456,Role2,DEF-101
我对“ALTER TABLE”的尝试失败了。
Using MS Access for a "simple" task.
SELECT Users.UserName, Users.ID, Record.Course
FROM Record INNER JOIN Users ON Record.Name = Users.Username;
What I need are two additional columns to the output. One that just says "Add" and one that says "Role2". These will be the same for every row.
So if originally the query pulled a line that looked like this:
smith,ABC123,DEF-100
jones,ABC456,DEF-101
I would want it to instead output:
Add,smith,ABC123,Role2,DEF-100
Add,jones,ABC456,Role2,DEF-101
My attempts with "ALTER TABLE" have failed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ALTER TABLE 在这里不适用。这仅需要带有文字文本的计算字段。
使用您喜欢的任何字段名称来代替 F1 和 F2。
ALTER TABLE does not apply here. This just calls for calculated fields with literal text.
Use whatever field names you prefer in place of F1 and F2.