Difference b/w inner join and outer join in DBMS?
-
Wat is the difference b/w inner join and outer join in DBMS?
-
Answer:
I usually go with w3schools. http://w3schools.com/sql/sql_join.asp
nb at Yahoo! Answers Visit the source
Other answers
Wiki has a good example http://en.wikipedia.org/wiki/Join_(SQL)
When you wish to get data from two related tables, you can use an inner join or an outer join to define how the data is related. For my examples, let's assume where is a table called "student" to hold student information, a table called "attendance" to hold student's attendance, and a table called StudentSchedule that holds a student's current schedule: Student has the following fields: ID FirstName LastName BirthDate Attendance has the following fields: ID AttendanceDate AttendanceCode MinutesAbsent StudentSchedule as the following fields: ID Course An inner join gets data from both tables where the specified data exists in both tables. For example, if you wanted a list of students in your database that were absent on December 4, 2003, you would use an inner join between the two examples tables "Student" and "Attendance": SELECT Student.ID, Student.FirstName, Student.LastName, Attendance.AttendanceCode, Attendance.MinutesAbsent FROM Student INNER JOIN Attendance ON Student.ID=Attendance.ID WHERE Attendance.AttendanceDate=' 12/4/2003' Th
Related Q & A:
- What is the performance of INNER JOIN vs WHERE?Best solution by Stack Overflow
- How to write delete query with inner join?Best solution by codeproject.com
- How does the Left-Outer Join in Linq (C#) work?Best solution by devcurry.com
- What will happen if lymphocytes are absent in w.b.c?Best solution by ncbi.nlm.nih.gov
- What is the difference between a B.S. and B.A. in psychology?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.