<?xml version="1.0" encoding='utf-8'?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="card1" title="Join (SQL) - Page 10 - Wikipedia">
<p>
<a accesskey="1" href="page.php?w=Join_(SQL)&amp;p=9">1.Previous</a><br />
<a accesskey="3" href="page.php?w=Join_%28SQL%29&amp;p=11">3.Next</a>
</p>

<p>The "implicit join notation" simply lists the tables for joining, in the <code>FROM</code> clause of the <code>SELECT</code> statement, using commas to separate them. Thus it specifies a cross join, and the <code>WHERE</code> clause may apply additional filter-predicates (which function comparably to the join-predicates in the explicit notation).</p>

<p>The following example is equivalent to the previous one, but this time using implicit join notation:</p>

<p><syntaxhighlight lang=sql>SELECT employee.LastName, employee.DepartmentID, department.DepartmentNameFROM employee, departmentWHERE employee.DepartmentID = department.DepartmentID;</syntaxhighlight></p><p>
<a accesskey="1" href="page.php?w=Join_(SQL)&amp;p=9">1.Previous</a><br />
<a accesskey="3" href="page.php?w=Join_%28SQL%29&amp;p=11">3.Next</a>
</p>

<do type="prev" label="Search">
        <go href="search.wml"/>
</do>

</card>
</wml>
