简单的sql查询问题
您好,我在 ms access 中有这个查询,但不知何故不起作用。我需要做的就是从捐赠者表中提取捐赠者姓名和志愿者 ID。但我需要先获取用户输入、志愿者姓名并提取相关志愿者。请帮忙。
从志愿者、捐赠者中选择志愿者.id、志愿者.name、捐赠者.* WHERE Volunteer.id = Donator.vid AND Volunteer.name = Forms!frm5!Combo2;
Hi I have this query in ms access which is somehow not working. All I need to do is to pull out donator name from donator table with the id of volunteer. But I need to get user input, volunteer name and pull out the related volunteer first. Please help.
SELECT volunteer.id, volunteer.name, donator.* FROM volunteer, donator WHERE Volunteer.id = Donator.vid AND Volunteer.name = Forms!frm5!Combo2;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查数据库名称的大小写。例如,您引用 Volunteer.name 和 Volunteer.id。在某些数据库中,字段区分大小写。
另外,您还需要引用您的志愿者姓名字段。
Check your case on Database names. For instance, you reference volunteer.name and Volunteer.id. In some DB's, fields are case sensitive.
Also, you'd want to quote your volunteer name field.