返回首页
当前位置: 主页 > 其他教程 > Access教程 >

Access中的Inner join left join right join 嵌套连接查询语法

时间:2013-03-07 21:55来源:Office教程学习网 www.office68.com编辑:麦田守望者

和SQLServer 的不一样,注意其中的括号

SELECT fields
FROM table1 INNER JOIN
(table2 INNER JOIN [( ]table3
[INNER JOIN [( ]tablex [INNER JOIN ...)]
ON table3.field3 compopr tablex.fieldx)]
ON table2.field2 compopr table3.field3)
ON table1.field1 compopr table2.field2;

否则会造成诸如下面的错误:内联三个表

语法错误 (操作符丢失) 在查询表达式 'ur.UserID=u.UserID inner join [DT_Role] r on r.RoleID=ur.RoleID' 中。 在 .....

比如这里的语句:

Select r.RoleName from [User] u inner join [UserInRoles] ur on u.UserID=ur.UserID inner join [Role] r on ur.RoleID=r.RoleID where u.UserName= ? and ApplicationID is null

这里在SQL Server中是不会出错的,但是在Acceess中则会出错,应该改为

Select r.RoleName from [User] u inner join ([UserInRoles] ur inner join [Role] r on ur.RoleID=r.RoleID)on u.UserID=ur.UserID where u.UserName= ? and ApplicationID is null

参考 http://office.microsoft.com/zh-cn/access/HA012314872052.aspx

------分隔线----------------------------
标签(Tag):access 数据库 access技巧 access实例教程 access源代码 access基础教程
------分隔线----------------------------
推荐内容
猜你感兴趣