Home > Database > Mysql Tutorial > body text

AccessLeftOuterJoin关联多个表

WBOY
Release: 2016-06-07 15:28:53
Original
1293 people have browsed it

Access 支持三表或三表以上的 join 操作,但是要加括号,一层一层 JOIN 下去 例子: 1、SELECT * from XXas a left outer join YY as b on a.URL=b.URL 2、SELECT * from (XXas a left outer join YY as b on a.URL=b.URL) left outer join ZZ as c on c.URL

Access 支持三表或三表以上的 join 操作,但是要加括号,一层一层 JOIN 下去

例子:
1、SELECT * from XXas a left outer join YY as b on a.URL=b.URL

2、SELECT * from (XXas a left outer join YY as b on a.URL=b.URL) left outer join ZZ as c on c.URL=a.URL

3、SELECT * into all_ from ((((XX as a left outer join YY as b on a.URL=b.URL)

left outer join ZZ as c on c.URL=a.URL)
left outer join MM as d on d.URL=a.URL)
left outer join NN as e on e.URL=a.URL)

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template