Matzberger Marcus: Einstiegsartikel: JOINs

Beitrag lesen

Hallo,

wenn Du meinen allerersten Entwurf gelesen hast, dort habe ich einen Abschnitt über proprietäre Syntax geschrieben. LEFT/RIGHT bei MS SQL Server und Oracle, die neue USING-Syntax bei MySQL und PostgreSQL (wird die eigentlich von Oracle verstanden?).

Ja, seit 9i. Hier ein kurzer Auszug aus der Doku:

»»SELECT d.department_id as d_dept_id

,e.department_id as e_dept_id
     ,e.last_name

»»FROM   departments d FULL OUTER JOIN employees e
»»ON     d.department_id = e.department_id
»»ORDER BY d.department_id;
»»
»»
»»Because the column names in this example are the same in both tables in the join,
»»you can also use the common column feature (the USING clause) of the join syntax,
»»which coalesces the two matching columns department_id. The output is the
»»same as for the preceding example:
»»
»»SELECT department_id AS d_e_dept_id

,e.last_name

»»FROM   departments d FULL OUTER JOIN employees e
»»USING (department_id)
»»ORDER BY department_id;

Beschreibung der verschiedenen Joins bei Oracle

Grüße
Marcus

--
Wenn der Weg das Ziel ist, ist das Ziel dann weg?