Click here to Skip to main content
15,891,682 members
Home / Discussions / Database
   

Database

 
GeneralRe: need help in building this view, please Edited to add results of trying RIGHT OUTER JOIN Pin
i.j.russell15-Mar-10 9:31
i.j.russell15-Mar-10 9:31 
QuestionGetting SP results from a table with multiple rows for same ID [modified] Pin
DeepToot12-Mar-10 9:37
DeepToot12-Mar-10 9:37 
AnswerRe: Getting SP results from a table with multiple rows for same ID Pin
Luc Pattyn12-Mar-10 10:06
sitebuilderLuc Pattyn12-Mar-10 10:06 
GeneralRe: Getting SP results from a table with multiple rows for same ID Pin
DeepToot12-Mar-10 10:15
DeepToot12-Mar-10 10:15 
AnswerRe: Getting SP results from a table with multiple rows for same ID Pin
riced12-Mar-10 13:49
riced12-Mar-10 13:49 
GeneralRe: Getting SP results from a table with multiple rows for same ID Pin
DeepToot15-Mar-10 5:06
DeepToot15-Mar-10 5:06 
Questionhelp me understanding left join Pin
Mogamboo_Khush_Hua11-Mar-10 19:28
Mogamboo_Khush_Hua11-Mar-10 19:28 
AnswerRe: help me understanding left join Pin
Rod Kemp11-Mar-10 22:39
Rod Kemp11-Mar-10 22:39 
From SQL Server books online, you may want to spend some time looking through it;

Inner joins (the typical join operation, which uses some comparison operator like = or <>). These include equi-joins and natural joins.

Inner joins use a comparison operator to match rows from two tables based on the values in common columns from each table. For example, retrieving all rows where the student identification number is the same in both the students and courses tables.

Outer joins are specified with one of the following sets of keywords when they are specified in the FROM clause:

LEFT JOIN or LEFT OUTER JOIN

The result set of a left outer join includes all the rows from the left table specified in the LEFT OUTER clause, not just the ones in which the joined columns match. When a row in the left table has no matching rows in the right table, the associated result set row contains null values for all select list columns coming from the right table.

RIGHT JOIN or RIGHT OUTER JOIN

A right outer join is the reverse of a left outer join. All rows from the right table are returned. Null values are returned for the left table any time a right table row has no matching row in the left table.

FULL JOIN or FULL OUTER JOIN

A full outer join returns all rows in both the left and right tables. Any time a row has no match in the other table, the select list columns from the other table contain null values. When there is a match between the tables, the entire result set row contains data values from the base tables.
AnswerRe: help me understanding left join Pin
Mycroft Holmes11-Mar-10 23:15
professionalMycroft Holmes11-Mar-10 23:15 
GeneralRe: help me understanding left join Pin
Mogamboo_Khush_Hua12-Mar-10 2:16
Mogamboo_Khush_Hua12-Mar-10 2:16 
QuestionAccess 2007 - tabbed forms manage own popups Pin
john john mackey11-Mar-10 5:33
john john mackey11-Mar-10 5:33 
AnswerRe: Access 2007 - tabbed forms manage own popups Pin
Eddy Vluggen12-Mar-10 2:23
professionalEddy Vluggen12-Mar-10 2:23 
GeneralRe: Access 2007 - tabbed forms manage own popups Pin
john john mackey16-Mar-10 7:37
john john mackey16-Mar-10 7:37 
Questionproject Pin
salemmohamed10-Mar-10 22:54
salemmohamed10-Mar-10 22:54 
AnswerRe: project Pin
Mycroft Holmes10-Mar-10 23:53
professionalMycroft Holmes10-Mar-10 23:53 
AnswerRe: project Pin
R. Giskard Reventlov11-Mar-10 0:01
R. Giskard Reventlov11-Mar-10 0:01 
GeneralRe: project Pin
Mycroft Holmes11-Mar-10 19:07
professionalMycroft Holmes11-Mar-10 19:07 
GeneralRe: project Pin
Rob Graham14-Mar-10 6:32
Rob Graham14-Mar-10 6:32 
GeneralRe: project Pin
Mycroft Holmes14-Mar-10 14:50
professionalMycroft Holmes14-Mar-10 14:50 
QuestionWhat is special about 'Asynchronous Processing=true' in the connection string? Pin
Rob Philpott10-Mar-10 6:18
Rob Philpott10-Mar-10 6:18 
AnswerRe: What is special about 'Asynchronous Processing=true' in the connection string? Pin
Mycroft Holmes10-Mar-10 23:56
professionalMycroft Holmes10-Mar-10 23:56 
AnswerRe: What is special about 'Asynchronous Processing=true' in the connection string? Pin
Eddy Vluggen11-Mar-10 1:56
professionalEddy Vluggen11-Mar-10 1:56 
QuestionStreaming SQL table data to secondary location Pin
bonkers12310-Mar-10 3:54
bonkers12310-Mar-10 3:54 
AnswerRe: Streaming SQL table data to secondary location Pin
Tim Carmichael10-Mar-10 4:07
Tim Carmichael10-Mar-10 4:07 
AnswerNot real time Pin
David Mujica10-Mar-10 4:18
David Mujica10-Mar-10 4:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.