SQL Server: Joins
This SQL Server tutorial explains how to use JOINS, both INNER and OUTER JOINS, in SQL Server (Transact-SQL) with syntax, visual illustrations, and examples.
Description
SQL Server (Transact-SQL) JOINS are used to retrieve data from multiple tables. A SQL Server JOIN is performed whenever two or more tables are joined in a SQL statement.
There are 4 different types of SQL Server joins:
- SQL Server INNER JOIN (or sometimes called simple join)
- SQL Server LEFT OUTER JOIN (or sometimes called LEFT JOIN)
- SQL Server RIGHT OUTER JOIN (or sometimes called RIGHT JOIN)
- SQL Server FULL OUTER JOIN (or sometimes called FULL JOIN)
So let's discuss SQL Server JOIN syntax, look at visual illustrations of SQL Server JOINS, and explore SQL Server JOIN examples.
Please refer this link for details.
Comments
Post a Comment