May 2020
Beginner
564 pages
14h 9m
English
To join tables using an inner join, you can use the following sample syntax:
SELECT column(s)FROM table1 AS aJOIN table2 AS bON a.id = b.id
To create a join using the left outer join, you can use the following sample syntax:
SELECT column(s)FROM table1 AS aLEFT OUTER JOIN table2 AS bON a.id = b.id
To create a join using the right outer join, you can use the following sample syntax:
SELECT column(s)FROM table1 AS aRIGHT OUTER JOIN table2 AS bON a.id = b.id
Read now
Unlock full access