1. JOIN
INNER JOIN --only shows matching rows from both tables
2. LEFT ( same as LEFT OUTER) -- shows matching rows from both tables + all rows from LEFT table
RIGHT (same as RIGHT OUTER) -- shows matching rows from both tables + all rows from RIGHT table
3. EQUI JOIN - NOT Explicitely supported by SQL SERVER
but the meaning is an inner join using EQUALITY as JOIN condition
4. FULL OUTER - all matching rows in both tables + all unmatching rows from both tables.
5. SELF JOIN - both implicit and explicite syntaxes are supported.
{
SQL Server doesn't support Natural join and Using clause syntax
http://www.gplivna.eu/papers/sql_join_types.htm#p12.2
}
Look at this article also :
{http://www.mssqltips.com/tip.asp?tip=1447
How to join SQL Server tables where columns include NULL values}
Thursday, October 21, 2010
Subscribe to:
Post Comments (Atom)
How to check local and global angular versions
Use the command ng version (or ng v ) to find the version of Angular CLI in the current folder. Run it outside of the Angular project, to f...
-
Most of the google tutorials on keras do not show how to display a confusion matrix for the solution. A confusion matrix can throw a clear l...
-
This error means you have created the DbContext but not configured/added it to the project using either DI in startup.cs or by using DbCon...
-
This happens when you dont define primary key for an entity type. Define a primary key either explicitly or implicitly.
No comments:
Post a Comment