sql_ inner vs outer joins

Upload: hanumanth-yh

Post on 25-Feb-2018

228 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/25/2019 SQL_ Inner vs Outer Joins

    1/14

    Translate:

    Home

    Java

    C/C++

    SQL Interview Questions

    Inner vs. Outer joins

    SQL Key Definition

    Differences between Primary and

    Foreign Keys

    Natural Key In Database

    Secondary Key

    Simple key in SQL

    Superkey Example

    What is Referential Integrity

    Having vs. Where clause

    How do database indexes work?

    What is a self join?

    Example of DISTINCT in SQL

    Retrieve unique rows without DISTINCT

    Practice Interview Question 1

    Practice Interview Question 1 continued

    Practice Interview Question 1 continued

    Databases/SQL

    Joins are used to combine the data from two tables, with the result being a new,

    temporary table. The temporary table is created based on column(s) that the two

    tables share, which represent meaningful column(s) of comparison. The goal is to

    extract meaningful data from the resulting temporary table. Joins are performed based

    on something called a predicate, which specifies the condition to use in order to

    perform a join. A join can be either an inner join or an outer join, depending on how one

    wants the resulting table to look.

    It is best to illustrate the differences between inner and outer joins by use of an example.

    Here we have 2 tables that we will use for our example:

    Employee Location

    EmpID EmpName

    13 Jason

    8 Alex

    3 Ram

    17 Babu

    25 Johnson

    EmpID EmpLoc

    13 San Jose

    8 Los An geles

    3 Pune, India

    17 Chennai,India

    39 Bangalore, India

    Its important to note that the very last row in the Employee table does not exist in the

    Employee Location table. Also, the very last row in the Employee Location table does not

    exist in the Employee table. These facts will prove to be significant in the discussion that

    follows.

    http://www.programmerinterview.com/index.php/database-sql/retrieve-unique-rows-with-distinct/http://www.programmerinterview.com/index.php/database-sql/what-is-an-index/http://www.programmerinterview.com/index.php/database-sql/what-is-referential-integrity/http://www.programmerinterview.com/index.php/database-sql/secondary-key/http://www.programmerinterview.com/index.php/database-sql/natural-key-in-database/http://www.programmerinterview.com/index.php/database-sql/differences-between-primary-and-foreign-keys/http://www.programmerinterview.com/index.php/database-sql/sql-key-definition/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/http://www.programmerinterview.com/index.php/database-sql/introduction/http://www.programmerinterview.com/index.php/database-sql/http://www.programmerinterview.com/index.php/c-cplusplus/http://www.programmerinterview.com/index.php/java-questions/http://www.programmerinterview.com/http://www.programmerinterview.com/http://www.programmerinterview.com/http://www.programmerinterview.com/index.php/database-sql/superkey-example/http://void%280%29/http://www.programmerinterview.com/index.php/database-sql/http://www.programmerinterview.com/index.php/database-sql/practice-interview-question-1-continued-2/http://www.programmerinterview.com/index.php/database-sql/practice-interview-question-1-continued/http://www.programmerinterview.com/index.php/database-sql/practice-interview-question-1/http://www.programmerinterview.com/index.php/database-sql/retrieve-unique-rows-without-distinct/http://www.programmerinterview.com/index.php/database-sql/retrieve-unique-rows-with-distinct/http://www.programmerinterview.com/index.php/database-sql/what-is-a-self-join/http://www.programmerinterview.com/index.php/database-sql/what-is-an-index/http://www.programmerinterview.com/index.php/database-sql/having-vs-where-clause/http://www.programmerinterview.com/index.php/database-sql/what-is-referential-integrity/http://www.programmerinterview.com/index.php/database-sql/superkey-example/http://www.programmerinterview.com/index.php/database-sql/simple-key-in-sql/http://www.programmerinterview.com/index.php/database-sql/secondary-key/http://www.programmerinterview.com/index.php/database-sql/natural-key-in-database/http://www.programmerinterview.com/index.php/database-sql/differences-between-primary-and-foreign-keys/http://www.programmerinterview.com/index.php/database-sql/sql-key-definition/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/http://www.programmerinterview.com/index.php/database-sql/introduction/http://www.programmerinterview.com/index.php/c-cplusplus/http://www.programmerinterview.com/index.php/java-questions/http://www.programmerinterview.com/http://void%280%29/http://www.programmerinterview.com/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    2/14

    Practice Interview Question 2

    Advanced SQL Interview Questions andAnswers

    Advanced SQL Interview Questions andAnswers Part 2

    Practice Interview Question 2 continued

    Data Mining vs. Data Warehousing

    Ternary/Three-valued Logic in SQL

    Find Maximum Value Without UsingAggregate

    SQL Injection Example and Tutorial

    SQL Injection Prevention

    Blind SQL Injection Example

    Parameterized Queries vs PreparedStatements

    Prepared Statement Example

    Difference between a full join and aninner join?

    Difference between a left outer join andright outer join?

    Difference between a left join and a leftouter join?

    SQL: Having vs Group By

    SQL: Group By with multiple columns

    SQL Select Distinct and Order By

    SQL Order By default sort order

    Derived table vs subquery

    Correlated vs Uncorrelated Subquery

    Find nth highest salary SQL

    Cardinality in SQL

    Selectivity in SQL Databases

    Lets start the explanation with outer joins. Outer joins can be be further divided into left

    outer joins, right outer joins, and full outer joins. Here is what the SQL for a left outer join

    would look like, using the tables above:

    Subscribe to our newsletter for more free interview questions.

    In this SQL we are joining on the condition that the employee IDs match in the rows

    tables. So, we will be essentially combining 2 tables into 1, based on the condition that

    the employee IDs match. Note that we can get rid of the "outer" in left outer join, which

    will give us the SQL below. This is equivalent to what we have above.

    A left outer join retains all of the rows of the left table, regardless of whether there is a

    row that matches on the right table. The SQL above will give us the result set shown

    below.

    Employee.EmpID Employee.EmpName Location.EmpID Location.EmpLoc

    13 Jason 13 San Jose

    8 Alex 8 Los Angeles

    3 Ram 3 Pune, India

    17 Babu 17 Chennai, India

    25 Johnson NULL NULL

    http://www.programmerinterview.com/index.php/popup/http://www.programmerinterview.com/index.php/database-sql/cardinality-versus-selectivity/http://www.programmerinterview.com/index.php/database-sql/selectivity-in-sql-databases/http://www.programmerinterview.com/index.php/database-sql/cardinality-in-sql/http://www.programmerinterview.com/index.php/database-sql/find-nth-highest-salary-sql/http://www.programmerinterview.com/index.php/database-sql/correlated-vs-uncorrelated-subquery/http://www.programmerinterview.com/index.php/database-sql/derived-table-vs-subquery/http://www.programmerinterview.com/index.php/database-sql/sql-order-by-default-sort-order/http://www.programmerinterview.com/index.php/database-sql/sql-select-distinct-and-order-by/http://www.programmerinterview.com/index.php/database-sql/sql-group-by-with-multiple-columns/http://www.programmerinterview.com/index.php/database-sql/sql-having-vs-group-by/http://www.programmerinterview.com/index.php/database-sql/difference-between-a-left-join-and-a-left-outer-join/http://www.programmerinterview.com/index.php/database-sql/difference-between-a-left-outer-join-and-right-outer-join/http://www.programmerinterview.com/index.php/database-sql/difference-between-a-full-join-and-an-inner-join/http://www.programmerinterview.com/index.php/database-sql/example-of-prepared-statements-and-sql-injection-prevention/http://www.programmerinterview.com/index.php/database-sql/parameterized-queries-vs-prepared-statements/http://www.programmerinterview.com/index.php/database-sql/blind-sql-injection/http://www.programmerinterview.com/index.php/database-sql/sql-injection-prevention/http://www.programmerinterview.com/index.php/database-sql/sql-injection-example/http://www.programmerinterview.com/index.php/database-sql/find-maximum-value-without-using-aggregate/http://www.programmerinterview.com/index.php/database-sql/ternary-three-valued-logic-in-sql/http://www.programmerinterview.com/index.php/database-sql/data-mining-vs-warehousing/http://www.programmerinterview.com/index.php/database-sql/practice-interview-question-2-continued/http://www.programmerinterview.com/index.php/database-sql/advanced-sql-interview-questions-continued-part-2/http://www.programmerinterview.com/index.php/database-sql/advanced-sql-interview-questions-and-answers/http://www.programmerinterview.com/index.php/database-sql/practice-interview-question-2/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    3/14

    Cardinality versus Selectivity

    Clustered vs. Non Clustered Index

    Page versus block

    Database Locking

    Lock Escalation

    Database Deadlock Example

    What is a database transaction?

    SQL Server Transaction

    Oracle Transaction

    MySQL Transaction

    DB2 Transaction

    Concurrent Update Problem

    How to Tune Database Performance

    Database Full Table Scan

    What is cost based optimization?

    How to tune SQL queries

    SQL Index Performance

    What is a bitmap index?

    Oracle Indexes Examples

    System privileges vs. object privileges

    SQL Grant

    SQL Revoke

    SQL Create User

    Database Roles

    SQL CASE Statement

    SQL Searched CASE Statement

    SQL Inline View

    RANK() versus DENSE_RANK()

    Earlier we had mentioned something called a join predicate. In the SQL above, the join

    predicate is "on employee.empID = location.empID". This is the heart of any type of

    join, because it determines what common column between th e 2 tables will be used to

    "join" the 2 tables. As you can see from the result set, all of the rows from the left table

    are returned when we do a left outer join. The last row of the Employee table (which

    contains the "Johson" entry) is displayed in the results even though there is no matching

    row in the Location table. As you can see, the non-matching columns in the last row arefilled with a "NULL". So, we have "NULL" as the entry wherever there is no match.

    A right outer join is pretty much the same thing as a left outer join, except that the rows

    that are retained are from the right table. This is what the SQL looks like:

    Using the tables presented above, we can show what the result set of a right outer join

    would look like:

    Employee.EmpID Employee.EmpName Location.EmpID Location.EmpLoc

    13 Jason 13 San Jose

    8 Alex 8 Los Angeles

    3 Ram 3 Pune, India

    17 Babu 17 Chennai, India

    NULL NULL 39 Bangalore, India

    We can see that the last row returned in the result set contains the row that was in the

    http://www.programmerinterview.com/index.php/database-sql/rank-versus-dense_rank/http://www.programmerinterview.com/index.php/database-sql/sql-inline-view/http://www.programmerinterview.com/index.php/database-sql/sql-searched-case-expression/http://www.programmerinterview.com/index.php/database-sql/sql-case-statement/http://www.programmerinterview.com/index.php/database-sql/database-roles/http://www.programmerinterview.com/index.php/database-sql/sql-create-user/http://www.programmerinterview.com/index.php/database-sql/sql-revoke/http://www.programmerinterview.com/index.php/database-sql/sql-grant/http://www.programmerinterview.com/index.php/database-sql/system-privileges-vs-object-privileges/http://www.programmerinterview.com/index.php/database-sql/oracle-indexes-examples/http://www.programmerinterview.com/index.php/database-sql/what-is-a-bitmap-index/http://www.programmerinterview.com/index.php/database-sql/sql-index-performance/http://www.programmerinterview.com/index.php/database-sql/how-to-tune-sql-queries-2/http://www.programmerinterview.com/index.php/database-sql/what-is-cost-based-optimization/http://www.programmerinterview.com/index.php/database-sql/sql-full-table-scan/http://www.programmerinterview.com/index.php/database-sql/how-to-tune-database-performance/http://www.programmerinterview.com/index.php/database-sql/concurrent-update-problem/http://www.programmerinterview.com/index.php/database-sql/db2-transaction/http://www.programmerinterview.com/index.php/database-sql/mysql-transaction/http://www.programmerinterview.com/index.php/database-sql/oracle-transaction/http://www.programmerinterview.com/index.php/database-sql/sql-server-transaction/http://www.programmerinterview.com/index.php/database-sql/what-is-a-database-transaction/http://www.programmerinterview.com/index.php/database-sql/database-deadlock/http://www.programmerinterview.com/index.php/database-sql/lock-escalation/http://www.programmerinterview.com/index.php/database-sql/database-locking/http://www.programmerinterview.com/index.php/database-sql/page-versus-block/http://www.programmerinterview.com/index.php/database-sql/clustered-vs-non-clustered-index/http://www.programmerinterview.com/index.php/database-sql/cardinality-versus-selectivity/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    4/14

    Javascript

    PHP

    Data Structures

    Design Pattern Questions

    Excel Interview Questions

    HTML5

    Networking

    Operating Systems

    Recursion

    Apache Interview Questions

    General/Miscellaneous

    Non-Technical Questions

    Interviewing in India

    Working As a Software Engineer

    Financial Analyst Questions

    Job Advice For Programmers

    Puzzles

    Assortment of Knowledge

    American Vocabulary

    Technical Vocabulary

    Location table, but not in the Employee table (the "Bangalore, India" entry). Because

    there is no matching row in the Employee table that has an employee ID of "39", we

    have NULLs in the result set for the Employee columns.

    Now that weve gone over outer joins, we can contrast those with the inner join. The

    difference between an inner join and an outer join is that an inner join will return only

    the rows that actually match based on the join predicate. Once again, this is best

    illustrated via an example. Heres what the SQL for an inner join will look like:

    This can also be written as:

    Now, here is what the result of running that SQL would look like:

    Employee.EmpID Employee.EmpName Location.EmpID Location.EmpLoc

    13 Jason 13 San Jose

    8 Alex 8 Los Angeles

    3 Ram 3 Pune, India

    17 Babu 17 Chennai, India

    We can see that an inner join will only return rows in which there is a match based on the

    http://www.programmerinterview.com/index.php/technical-vocabulary/http://www.programmerinterview.com/index.php/american-vocabulary/http://www.programmerinterview.com/index.php/assortment/http://www.programmerinterview.com/index.php/puzzles/http://www.programmerinterview.com/index.php/job-advice/http://www.programmerinterview.com/index.php/financial-interview-questions/http://www.programmerinterview.com/index.php/working-as-a-software-engineer/http://www.programmerinterview.com/index.php/interviewing-in-india/http://www.programmerinterview.com/index.php/non-technical-questions/http://www.programmerinterview.com/index.php/general-miscellaneous/http://www.programmerinterview.com/index.php/apache-interview-questions/http://www.programmerinterview.com/index.php/recursion/http://www.programmerinterview.com/index.php/operating-systems/http://www.programmerinterview.com/index.php/networking/http://www.programmerinterview.com/index.php/html5/http://www.programmerinterview.com/index.php/excel-interview-questions/http://www.programmerinterview.com/index.php/design-pattern-questions/http://www.programmerinterview.com/index.php/data-structures/http://www.programmerinterview.com/index.php/php-questions/http://www.programmerinterview.com/index.php/javascript/http://www.programmerinterview.com/index.php/database-sql/rank-versus-dense_rank/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    5/14

    Science Questions

    SQL Database

    SQL Query

    Microsoft SQL Server

    Online Sql Tutorials

    Learn HTML Online

    Email

    Country

    join predicate. In this case, what that means is anytime t he Employee and L ocation table

    share an Employee ID, a row will be generated in the results to show the match. Looking

    at the original tables, one can see that those Employee IDs that are shared by those

    tables are displayed in the results. But, with a left or right outerjoin, the result set will

    retain all of the rows from either the left or right table.

    SQL Database

    SQL Query

    Microsoft SQL Server

    Online Sql Tutorials

    Learn HTML Online

    Subscribe to our newsletter for more free interview questions.

    +12 Recommend this on Google

    SQL Syntax SQL Server 2008

    I'm not a robot

    reCAPTCHA

    Privacy - Terms

    https://www.google.com/intl/en/policies/terms/https://www.google.com/intl/en/policies/privacy/http://www.media.net/adchoices?id=168337671http://168337671.keywordblocks.com/SQL_Server_2008.cfm?&vsid=974719370374722&vi=1454470599853034848&dytm=1454470622824&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470622158019511037474911&upk=1454470621.10151&sttm=1454470622158&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=2&kbc=database%20sql&bdrid=9&kt=225&ki=26885307&ktd=299735691746005248&kbc2=&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsVV0M85dhb1Kh8qJpUp7Ke0asT1iVZQ7RTyGrbuMJmCbXuwHP9C8t2O5s0Ah3ec6GqRjCcUM18nw%3D&c=4A0IW1ycr7KSYhpxYDNX1Q&cme=70jQiPRDm9DxLEHI2Nm4D3xgiEDhB42EYg9%2BhyRj%2FR24OK7Ye5I9PrvbLOTWU0KsJm8VAfI7Iws03LKF9mmfPlJm43Fi7btTC6FV8tgglxd325DTJfLDgeSNAZuTKRxavSUfsIi1y1sYVVKOUwJ1eQ7H2TK3dhY8N4y%2BaV%2F6dZLzei33Vlk%2FKJAcQzP0fUs7%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7Ckmm6Z1oglrtWjtSVLfOawbC%2FLUS2Oo7OCjhq3rWCDG8C9Jz%2Fvb%2FeBQ%3D%3D%7C&cid=8CU14O3N6&crid=554278029&size=468x60&lpid=&tsid=11&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470605&&abpl=1http://168337671.keywordblocks.com/SQL_Syntax.cfm?&vsid=974719370374722&vi=1454470599853034848&dytm=1454470622824&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470622158019511037474911&upk=1454470621.10151&sttm=1454470622158&=&kp=1&kbc=database%20sql&bdrid=9&kt=225&ki=26886557&ktd=299735691611787520&kbc2=&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsVV0M85dhb1Kh8qJpUp7Ke0asT1iVZQ7RTyGrbuMJmCbXuwHP9C8t2O5s0Ah3ec6GqRjCcUM18nw%3D&c=4A0IW1ycr7KSYhpxYDNX1Q&cme=70jQiPRDm9DxLEHI2Nm4D3xgiEDhB42EYg9%2BhyRj%2FR24OK7Ye5I9PrvbLOTWU0KsJm8VAfI7Iws03LKF9mmfPlJm43Fi7btTC6FV8tgglxd325DTJfLDgeSNAZuTKRxavSUfsIi1y1sYVVKOUwJ1eQ7H2TK3dhY8N4y%2BaV%2F6dZLzei33Vlk%2FKJAcQzP0fUs7%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7Ckmm6Z1oglrtWjtSVLfOawbC%2FLUS2Oo7OCjhq3rWCDG8C9Jz%2Fvb%2FeBQ%3D%3D%7C&cid=8CU14O3N6&crid=554278029&size=468x60&lpid=&tsid=11&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470605&&abpl=1https://plus.google.com/117534044981344901640?prsrc=3https://twitter.com/intent/follow?original_referer=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fdatabase-sql%2Finner-vs-outer-joins%2F&ref_src=twsrc%5Etfw&region=follow_link&screen_name=programmerintvw&tw_p=followbuttonhttp://www.programmerinterview.com/jobshttp://www.media.net/adchoices?id=168337671http://168337671.keywordblocks.com/Learn_HTML_Online.cfm?&vsid=974719370374722&vi=1454470599345470780&dytm=1454470622113&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470621391019511037471925&upk=1454470621.10151&sttm=1454470621391&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=5&kbc=2008b44474ee917590eebd62abe18bc1.d2s&bdrid=9&kt=203&ki=17238669&ktd=299735674431521280&kbc2=&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIskdaqeeds1LaIFb4PiCzA%2FpEID7VCOuI0B%2B62sg96KagcBw2fwFKNheo%2FQtrV%2BousCK7m%2FC7wG5k%3D&c=5PYTAVp6r0n59mPN7sRtlQ&cme=70jQiPRDm9DoPjdYNlnKQA5Ajh3kjs4Iw%2B%2BiBDYl2fUhWqDWa1JD1pvOXAw8OadgIQ8xGhDdK4dZ7lvvbhu%2FN9V%2BFRDPBSMea2ktI7CCmQW7D%2F74oT%2FPNton3j8hFWhVqSCFey0Ava0Rhah1qHIHLHppBsS7s0y2M3QWChkGqj0fHUKFIhaWA7eWHnB0g03u%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CuvTniEvPeBNNf%2BnLrSfLkxNeTCLoaBK6bEDggmSi5xzJRhK5DTkltA%3D%3D%7C&cid=8CU14O3N6&crid=421634339&size=336x280&lpid=&tsid=7&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470604&&abpl=1http://168337671.keywordblocks.com/Online_Sql_Tutorials.cfm?&vsid=974719370374722&vi=1454470599345470780&dytm=1454470622113&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470621391019511037471925&upk=1454470621.10151&sttm=1454470621391&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=4&kbc=2626330f51671510fdce94bfc8a84bc8.d2s&bdrid=9&kt=201&ki=133544429&ktd=299735674431521280&kbc2=&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIskdaqeeds1LaIFb4PiCzA%2FpEID7VCOuI0B%2B62sg96KagcBw2fwFKNheo%2FQtrV%2BousCK7m%2FC7wG5k%3D&c=5PYTAVp6r0n59mPN7sRtlQ&cme=70jQiPRDm9DoPjdYNlnKQA5Ajh3kjs4Iw%2B%2BiBDYl2fUhWqDWa1JD1pvOXAw8OadgIQ8xGhDdK4dZ7lvvbhu%2FN9V%2BFRDPBSMea2ktI7CCmQW7D%2F74oT%2FPNton3j8hFWhVqSCFey0Ava0Rhah1qHIHLHppBsS7s0y2M3QWChkGqj0fHUKFIhaWA7eWHnB0g03u%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CuvTniEvPeBNNf%2BnLrSfLkxNeTCLoaBK6bEDggmSi5xzJRhK5DTkltA%3D%3D%7C&cid=8CU14O3N6&crid=421634339&size=336x280&lpid=&tsid=7&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470604&&abpl=1http://168337671.keywordblocks.com/Microsoft_SQL_Server.cfm?&vsid=974719370374722&vi=1454470599345470780&dytm=1454470622113&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470621391019511037471925&upk=1454470621.10151&sttm=1454470621391&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=3&kbc=database%20sql&bdrid=9&kt=225&ki=19183328&ktd=299735674431652608&kbc2=||l=1013||&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIskdaqeeds1LaIFb4PiCzA%2FpEID7VCOuI0B%2B62sg96KagcBw2fwFKNheo%2FQtrV%2BousCK7m%2FC7wG5k%3D&c=5PYTAVp6r0n59mPN7sRtlQ&cme=70jQiPRDm9DoPjdYNlnKQA5Ajh3kjs4Iw%2B%2BiBDYl2fUhWqDWa1JD1pvOXAw8OadgIQ8xGhDdK4dZ7lvvbhu%2FN9V%2BFRDPBSMea2ktI7CCmQW7D%2F74oT%2FPNton3j8hFWhVqSCFey0Ava0Rhah1qHIHLHppBsS7s0y2M3QWChkGqj0fHUKFIhaWA7eWHnB0g03u%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CuvTniEvPeBNNf%2BnLrSfLkxNeTCLoaBK6bEDggmSi5xzJRhK5DTkltA%3D%3D%7C&cid=8CU14O3N6&crid=421634339&size=336x280&lpid=&tsid=7&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470604&&abpl=1http://168337671.keywordblocks.com/SQL_Query.cfm?&vsid=974719370374722&vi=1454470599345470780&dytm=1454470622113&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470621391019511037471925&upk=1454470621.10151&sttm=1454470621391&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=2&kbc=database%20sql&bdrid=9&kt=225&ki=26885115&ktd=299735674431652608&kbc2=||l=1013||&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIskdaqeeds1LaIFb4PiCzA%2FpEID7VCOuI0B%2B62sg96KagcBw2fwFKNheo%2FQtrV%2BousCK7m%2FC7wG5k%3D&c=5PYTAVp6r0n59mPN7sRtlQ&cme=70jQiPRDm9DoPjdYNlnKQA5Ajh3kjs4Iw%2B%2BiBDYl2fUhWqDWa1JD1pvOXAw8OadgIQ8xGhDdK4dZ7lvvbhu%2FN9V%2BFRDPBSMea2ktI7CCmQW7D%2F74oT%2FPNton3j8hFWhVqSCFey0Ava0Rhah1qHIHLHppBsS7s0y2M3QWChkGqj0fHUKFIhaWA7eWHnB0g03u%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CuvTniEvPeBNNf%2BnLrSfLkxNeTCLoaBK6bEDggmSi5xzJRhK5DTkltA%3D%3D%7C&cid=8CU14O3N6&crid=421634339&size=336x280&lpid=&tsid=7&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470604&&abpl=1http://168337671.keywordblocks.com/SQL_Database.cfm?&vsid=974719370374722&vi=1454470599345470780&dytm=1454470622113&rtbsd=10&npgv=1&verid=111299&hvsid=00001454470621391019511037471925&upk=1454470621.10151&sttm=1454470621391&=&kp=1&kbc=database%20sql&bdrid=9&kt=225&ki=7749889&ktd=299735674515538688&kbc2=||l=1013||&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIskdaqeeds1LaIFb4PiCzA%2FpEID7VCOuI0B%2B62sg96KagcBw2fwFKNheo%2FQtrV%2BousCK7m%2FC7wG5k%3D&c=5PYTAVp6r0n59mPN7sRtlQ&cme=70jQiPRDm9DoPjdYNlnKQA5Ajh3kjs4Iw%2B%2BiBDYl2fUhWqDWa1JD1pvOXAw8OadgIQ8xGhDdK4dZ7lvvbhu%2FN9V%2BFRDPBSMea2ktI7CCmQW7D%2F74oT%2FPNton3j8hFWhVqSCFey0Ava0Rhah1qHIHLHppBsS7s0y2M3QWChkGqj0fHUKFIhaWA7eWHnB0g03u%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CuvTniEvPeBNNf%2BnLrSfLkxNeTCLoaBK6bEDggmSi5xzJRhK5DTkltA%3D%3D%7C&cid=8CU14O3N6&crid=421634339&size=336x280&lpid=&tsid=7&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470604&&abpl=1http://www.media.net/adchoices?id=168337671http://168337671.keywordblocks.com/Learn_HTML_Online.cfm?&vsid=974719370374722&vi=1454470599384205213&dytm=1454470621301&rtbsd=10&verid=111299&hvsid=00001454470620548019511037472922&upk=1454470621.10151&sttm=1454470620547&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=5&kbc=2008b44474ee917590eebd62abe18bc1.d2s&bdrid=9&kt=203&ki=17238669&ktd=295232074804118016&kbc2=&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsFQlJ7k8MyE9%2FrlBua1bAb87rg2cd9U%2Bt13vaTW7YgsOKtDC4HCGYIlGcpjiSebhTHG7E5gnDP6w%3D&c=03PRHOZti5mey8GxW-_v7Q&cme=IkZ9gfXxgEamIJsN0XOq7bINwRVcv%2BWUH3ok1c6k6gbhcXHwwG2nvMsHpaYREvUHVr87Hks77uLnB9cHGTyxuoVgd1RMKb3M8j8mlXQkCy4lEXfTjdMiZ%2BY0wegal%2BIMsNW%2FF%2BIaGHnYUd9ddRUgK2Hldn21teJc9D3gWL91IqJl58r4Y8VgY%2BC2Vaz1MsD8%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CSeekw2WtXDFp3aACQqe3gLU%2FSJSSJpQGHl1mDgEeB4SDLnd26WhHsw%3D%3D%7C&cid=8CU14O3N6&crid=661726427&size=250x250&lpid=&tsid=5&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470603&&abpl=1http://168337671.keywordblocks.com/Online_Sql_Tutorials.cfm?&vsid=974719370374722&vi=1454470599384205213&dytm=1454470621301&rtbsd=10&verid=111299&hvsid=00001454470620548019511037472922&upk=1454470621.10151&sttm=1454470620547&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=4&kbc=2626330f51671510fdce94bfc8a84bc8.d2s&bdrid=9&kt=201&ki=133544429&ktd=295232074804118016&kbc2=&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsFQlJ7k8MyE9%2FrlBua1bAb87rg2cd9U%2Bt13vaTW7YgsOKtDC4HCGYIlGcpjiSebhTHG7E5gnDP6w%3D&c=03PRHOZti5mey8GxW-_v7Q&cme=IkZ9gfXxgEamIJsN0XOq7bINwRVcv%2BWUH3ok1c6k6gbhcXHwwG2nvMsHpaYREvUHVr87Hks77uLnB9cHGTyxuoVgd1RMKb3M8j8mlXQkCy4lEXfTjdMiZ%2BY0wegal%2BIMsNW%2FF%2BIaGHnYUd9ddRUgK2Hldn21teJc9D3gWL91IqJl58r4Y8VgY%2BC2Vaz1MsD8%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CSeekw2WtXDFp3aACQqe3gLU%2FSJSSJpQGHl1mDgEeB4SDLnd26WhHsw%3D%3D%7C&cid=8CU14O3N6&crid=661726427&size=250x250&lpid=&tsid=5&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470603&&abpl=1http://168337671.keywordblocks.com/Microsoft_SQL_Server.cfm?&vsid=974719370374722&vi=1454470599384205213&dytm=1454470621301&rtbsd=10&verid=111299&hvsid=00001454470620548019511037472922&upk=1454470621.10151&sttm=1454470620547&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=3&kbc=database%20sql&bdrid=9&kt=225&ki=19183328&ktd=295232074804249344&kbc2=||l=1013||&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsFQlJ7k8MyE9%2FrlBua1bAb87rg2cd9U%2Bt13vaTW7YgsOKtDC4HCGYIlGcpjiSebhTHG7E5gnDP6w%3D&c=03PRHOZti5mey8GxW-_v7Q&cme=IkZ9gfXxgEamIJsN0XOq7bINwRVcv%2BWUH3ok1c6k6gbhcXHwwG2nvMsHpaYREvUHVr87Hks77uLnB9cHGTyxuoVgd1RMKb3M8j8mlXQkCy4lEXfTjdMiZ%2BY0wegal%2BIMsNW%2FF%2BIaGHnYUd9ddRUgK2Hldn21teJc9D3gWL91IqJl58r4Y8VgY%2BC2Vaz1MsD8%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CSeekw2WtXDFp3aACQqe3gLU%2FSJSSJpQGHl1mDgEeB4SDLnd26WhHsw%3D%3D%7C&cid=8CU14O3N6&crid=661726427&size=250x250&lpid=&tsid=5&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470603&&abpl=1http://168337671.keywordblocks.com/SQL_Query.cfm?&vsid=974719370374722&vi=1454470599384205213&dytm=1454470621301&rtbsd=10&verid=111299&hvsid=00001454470620548019511037472922&upk=1454470621.10151&sttm=1454470620547&=&tdAdd[]=%7C%40%7Cabp%3A3%3A1&kp=2&kbc=database%20sql&bdrid=9&kt=225&ki=26885115&ktd=295232074804249344&kbc2=||l=1013||&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsFQlJ7k8MyE9%2FrlBua1bAb87rg2cd9U%2Bt13vaTW7YgsOKtDC4HCGYIlGcpjiSebhTHG7E5gnDP6w%3D&c=03PRHOZti5mey8GxW-_v7Q&cme=IkZ9gfXxgEamIJsN0XOq7bINwRVcv%2BWUH3ok1c6k6gbhcXHwwG2nvMsHpaYREvUHVr87Hks77uLnB9cHGTyxuoVgd1RMKb3M8j8mlXQkCy4lEXfTjdMiZ%2BY0wegal%2BIMsNW%2FF%2BIaGHnYUd9ddRUgK2Hldn21teJc9D3gWL91IqJl58r4Y8VgY%2BC2Vaz1MsD8%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CSeekw2WtXDFp3aACQqe3gLU%2FSJSSJpQGHl1mDgEeB4SDLnd26WhHsw%3D%3D%7C&cid=8CU14O3N6&crid=661726427&size=250x250&lpid=&tsid=5&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470603&&abpl=1http://168337671.keywordblocks.com/SQL_Database.cfm?&vsid=974719370374722&vi=1454470599384205213&dytm=1454470621301&rtbsd=10&verid=111299&hvsid=00001454470620548019511037472922&upk=1454470621.10151&sttm=1454470620547&=&kp=1&kbc=database%20sql&bdrid=9&kt=225&ki=7749889&ktd=295232074888135424&kbc2=||l=1013||&fdkt=225&oref=http%3A%2F%2Fwww.google.co.in&fp=fCv%2BDXahPzfokI3JtScW3JBEYzSt%2FVzwnFFOdx3JXVme2AnY7VQZ78saRr9RPUIsFQlJ7k8MyE9%2FrlBua1bAb87rg2cd9U%2Bt13vaTW7YgsOKtDC4HCGYIlGcpjiSebhTHG7E5gnDP6w%3D&c=03PRHOZti5mey8GxW-_v7Q&cme=IkZ9gfXxgEamIJsN0XOq7bINwRVcv%2BWUH3ok1c6k6gbhcXHwwG2nvMsHpaYREvUHVr87Hks77uLnB9cHGTyxuoVgd1RMKb3M8j8mlXQkCy4lEXfTjdMiZ%2BY0wegal%2BIMsNW%2FF%2BIaGHnYUd9ddRUgK2Hldn21teJc9D3gWL91IqJl58r4Y8VgY%2BC2Vaz1MsD8%7C%7CNDHRnZ9Gz3KXlI%2Bi9OnZqQ%3D%3D%7C5gDUJdTGiJzedmq9hanWYg%3D%3D%7CN7fu2vKt8%2Fs%3D%7CcguqRpLPuNWiBdud%2Fkl2R%2B0QSsGbvRmXClFW0qRTRJ7sNLf4w7Ms%2BeZFq9fBo42WP7DuQzw1TKLtfncGbuillaG6pe%2FmA9mNmUy50owFtXg%3D%7CJf0d%2BWoAdPugZdiC0MCJNGSoD9GorE2HXV9tCnfaib0%3D%7CSeekw2WtXDFp3aACQqe3gLU%2FSJSSJpQGHl1mDgEeB4SDLnd26WhHsw%3D%3D%7C&cid=8CU14O3N6&crid=661726427&size=250x250&lpid=&tsid=5&ksu=190&chid=&https=0&extKwds=0&kwdsMaxTm=400&ugd=4&maxProviderPixel=&rms=1454470603&&abpl=1http://www.programmerinterview.com/index.php/science-questions/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    6/14

    Previous... Next...

    https://disqus.com/by/disqus_Q1R5soUDk3/https://disqus.com/by/dixitsingla/https://disqus.com/by/dixitsingla/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-994522400http://www.programmerinterview.com/jobshttp://www.programmerinterview.com/jobshttp://www.programmerinterview.com/jobshttp://www.programmerinterview.com/jobshttp://www.programmerinterview.com/jobshttp://www.programmerinterview.com/jobshttp://www.programmerinterview.com/index.php/database-sql/introduction/https://disqus.com/by/disqus_5qjeSPUfyL/https://disqus.com/by/sgt13echo/https://disqus.com/by/disqus_Q1R5soUDk3/https://disqus.com/by/dixitsingla/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1154880656http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1326561505http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1741357768https://disqus.com/by/disqus_5qjeSPUfyL/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1326561505https://disqus.com/by/sgt13echo/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1173521291https://disqus.com/by/disqus_Q1R5soUDk3/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-994522400https://disqus.com/by/dixitsingla/https://disqus.com/home/inbox/https://disqus.com/home/forums/programmerinterview/http://www.programmerinterview.com/index.php/database-sql/sql-key-definition/http://www.programmerinterview.com/index.php/database-sql/introduction/http://www.programmerinterview.com/jobs
  • 7/25/2019 SQL_ Inner vs Outer Joins

    7/14

    https://disqus.com/by/disqus_EQHbvNB5S8/https://disqus.com/by/vaibhavtikoo/https://disqus.com/by/disqus_U1wZekuAkD/https://disqus.com/by/shivam_bansal/https://disqus.com/by/disqus_ZXk4eD0zod/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1083057331http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1714864262https://disqus.com/by/disqus_EQHbvNB5S8/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1070742171http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1139207252https://disqus.com/by/vaibhavtikoo/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1347554158https://disqus.com/by/disqus_U1wZekuAkD/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1117775396http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1043259249https://disqus.com/by/shivam_bansal/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1154880656http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1997182069https://disqus.com/by/disqus_ZXk4eD0zod/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    8/14

    https://disqus.com/by/vuyanibillynyathikazi/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1055933111http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1081762410https://disqus.com/by/vuyanibillynyathikazi/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1093175243http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1095653809http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1096496070http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1111747483http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1333172050http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1922838500
  • 7/25/2019 SQL_ Inner vs Outer Joins

    9/14

    https://disqus.com/by/disqus_ZfRlK2UNsJ/https://disqus.com/by/rajendra_kawade/https://disqus.com/by/justin_lew/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2340813162https://disqus.com/by/disqus_ZfRlK2UNsJ/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2399331898https://disqus.com/by/rajendra_kawade/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2409592879https://disqus.com/by/justin_lew/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2450951942http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2454903361http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1055933111http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1289456100
  • 7/25/2019 SQL_ Inner vs Outer Joins

    10/14

    https://disqus.com/by/gavinshao/https://disqus.com/by/disqus_D2Lil9ZrWL/https://disqus.com/by/disqus_9PoRhSs8Un/https://disqus.com/by/disqus_pkKmJIONel/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1938555092http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1948504223https://disqus.com/by/gavinshao/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2010913534http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2057463377http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2254230593https://disqus.com/by/disqus_D2Lil9ZrWL/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2259173008http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2312108073https://disqus.com/by/disqus_9PoRhSs8Un/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-2259173008https://disqus.com/by/disqus_pkKmJIONel/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    11/14

    https://disqus.com/by/sumitperi/https://disqus.com/by/speakhearseenoevil/https://disqus.com/by/disqus_a5C9CAozFJ/https://disqus.com/by/disqus_jSmoZeuI73/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1826968576https://disqus.com/by/sumitperi/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1851428611https://disqus.com/by/speakhearseenoevil/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1876162631http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1878056782http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1893580680https://disqus.com/by/disqus_a5C9CAozFJ/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1914753769https://disqus.com/by/disqus_jSmoZeuI73/
  • 7/25/2019 SQL_ Inner vs Outer Joins

    12/14

    https://disqus.com/by/priyachetwani/https://disqus.com/by/disqus_zTgyxNz6MP/https://disqus.com/by/disqus_Qhhx4HvEqp/https://disqus.com/by/disqus_k6i6Xeh1Os/https://disqus.com/by/disqus_9POyp4RlPN/https://disqus.com/by/sumitperi/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1725107822http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1730997092https://disqus.com/by/priyachetwani/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1744660414https://disqus.com/by/disqus_zTgyxNz6MP/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1750065574https://disqus.com/by/disqus_Qhhx4HvEqp/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1752177650https://disqus.com/by/disqus_k6i6Xeh1Os/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1770097600http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1786919308https://disqus.com/by/disqus_9POyp4RlPN/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1800709061
  • 7/25/2019 SQL_ Inner vs Outer Joins

    13/14

    https://disqus.com/by/disqus_oQHPTOgBrK/https://help.disqus.com/customer/portal/articles/1657951?utm_source=disqus&utm_medium=embed-footer&utm_content=privacy-btnhttps://publishers.disqus.com/engage?utm_source=programmerinterview&utm_medium=Disqus-Footerhttps://disqus.com/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1687318813https://disqus.com/by/disqus_oQHPTOgBrK/http://www.programmerinterview.com/index.php/database-sql/inner-vs-outer-joins/#comment-1713062065http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fphp-questions%2Fphp-self-vs-static%2F%3A-Mw2iaBb-TI7eCE3vfzOQLuYIaY&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4167463805&zone=thread&area=bottom&object_type=thread&object_id=4167463805http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fphp-questions%2Fphp-self-vs-static%2F%3A-Mw2iaBb-TI7eCE3vfzOQLuYIaY&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4167463805&zone=thread&area=bottom&object_type=thread&object_id=4167463805http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fgeneral-miscellaneous%2Fpostfix-vs-prefix%2F%3A5zJPlbfgj1tm5DXTuB2W1bdhMwA&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4156116407&zone=thread&area=bottom&object_type=thread&object_id=4156116407http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fgeneral-miscellaneous%2Fpostfix-vs-prefix%2F%3A5zJPlbfgj1tm5DXTuB2W1bdhMwA&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4156116407&zone=thread&area=bottom&object_type=thread&object_id=4156116407http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fpuzzles%2Flockers-puzzle%2F%3AMNqSdar27hm2Y1Y-NYxaiDiyIG0&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4131177460&zone=thread&area=bottom&object_type=thread&object_id=4131177460http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2Findex.php%2Fpuzzles%2Flockers-puzzle%2F%3AMNqSdar27hm2Y1Y-NYxaiDiyIG0&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4131177460&zone=thread&area=bottom&object_type=thread&object_id=4131177460http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2F%3AVYUaAv-B292_dFAThfFXd8y3gt0&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4194354515&zone=thread&area=bottom&object_type=thread&object_id=4194354515http://disq.us/url?url=http%3A%2F%2Fwww.programmerinterview.com%2F%3AVYUaAv-B292_dFAThfFXd8y3gt0&imp=44fq9ij1bv36fk&prev_imp=44fib2kk10gq5&forum_id=1382366&forum=programmerinterview&thread_id=647249823&thread=4194354515&zone=thread&area=bottom&object_type=thread&object_id=4194354515
  • 7/25/2019 SQL_ Inner vs Outer Joins

    14/14

    Please bookmark with social media, your votes are noticed and appreciated:

    Website Designed by NayaPixel.com

    Would you like to thank ProgrammerInterview.com for being a helpful free resource? Then why not tell a friend about us, or simply add a link

    to this page from your webpage using the HTML below.

    Link to this page:

    Copyright 2015 | Programm er Job Board | India Job Board for Programmers | About

    http://www.programmerinterview.com/index.php/about/http://indiajobs.programmerinterview.com/http://www.programmerinterview.com/jobshttp://www.nayapixel.com/