Access中Sql语句中有关Join写法问题

由于最近用到了Access,所以在此记录一下,便于查找。
Sql Server中执行成功的语句:

select t.ExamAddrID, m.[StuNo], p.Photo, cs.SubName 
from t_room r 
left join dbo.t_examination px on 1=1 
left join t_examination_Sub m on m.SubjectID=2 and r.ExamRoomID=m.ExamRoomID and px.seat_no=m.SeatNo 
left join t_student_photo p on m.StuNo=p.StuNo 
left join t_student s on m.StuNo=s.StuNo 
left join t_code_sub cs on s.sex=cs.CodeSubID and cs.CodeID=22
inner join (select distinct examroomid from t_examination_Sub where SubjectID=2) rm on rm.ExamRoomID = r.ExamRoomID;


在Access中修改为:

select t.ExamAddrID, m.[StuNo], p.Photo, cs.SubName
from (((((select * from t_room, t_examination) t
left join (select * from t_examination_Sub where SubjectID=2) m on t.ExamRoomID=m.ExamRoomID and t.seat_no=m.SeatNo)
left join t_student_photo p on m.StuNo=p.StuNo)
left join t_student s on m.StuNo=s.StuNo)
left join (select * from t_code_sub where CodeID=22) cs on s.sex=cs.CodeSubID)
inner join (select distinct examroomid from t_examination_Sub where SubjectID=2) rm on t.ExamRoomID = rm.ExamRoomID;

总结:由此可见,Access在Left join的时候 需要增加 “(” 进行分隔,定值问题需要改写为子查询方式。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值