Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Join (SQL)
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
====Alternative syntaxes==== Oracle supports the deprecated<ref name="deprecated_plus_sign"> [http://www.dba-oracle.com/tips_oracle_left_outer_join.htm Oracle Left Outer Join]</ref> syntax: <syntaxhighlight lang="sql"> SELECT * FROM employee, department WHERE employee.DepartmentID = department.DepartmentID(+) </syntaxhighlight> [[Sybase]] supports the syntax ([[Microsoft SQL Server]] deprecated this syntax since version 2000): <syntaxhighlight lang=tsql> SELECT * FROM employee, department WHERE employee.DepartmentID *= department.DepartmentID </syntaxhighlight> [[IBM Informix]] supports the syntax: <syntaxhighlight lang=sql> SELECT * FROM employee, OUTER department WHERE employee.DepartmentID = department.DepartmentID </syntaxhighlight> [[File:SQL Join - 03 A Right Join B.svg|alt=A Venn diagram show the right circle and overlapping portions filled.|thumb| A Venn diagram representing the right join SQL statement between tables A and B. ]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)