[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
SqlJoin
There are different types of joins:
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
SqlJoin
(SQL) Join
Joins are wasy to combine tabular data tables together to produce an output of tabular data to find information we might need in the database.There are different types of joins:
- ?Inner join (produces intersection between two tables)
- ?Cross join (produces Cathesian product of two tables)
- ?Left join (produces table that contains the left table and the intersection of the right table. If the intersection does not exists, the right table part is set to NULL)
- ?Left join (produces table that contains the right table and the intersection of the left table. If the intersection does not exists, the left table part is set to NULL)
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
