1
vote
2answers
34 views

Left Outer Join, No result in final query

I'm executing the following query Select * from A a left outer join B b on (b.id = a.id) I'm getting one record from A and no records from B. I'm expecting one record in final select query but ...
0
votes
4answers
121 views

SELECT * FROM tableA, tableB WHERE Conditions [+]

I have the following query SELECT * FROM tableA, tableB WHERE Conditions [+] What does this keyword Conditions[+] Stands for? How this query behaves as a outer join?
1
vote
1answer
87 views

How to join tables to get one row for each row of source tables?

I have two different kinds of entities in two tables with only a few common columns that I want to join and sort by one of the common columns. In the resulting table each row should represent either a ...
0
votes
2answers
382 views

FULL OUTER JOIN on a Many-to-Many with LINQ Entity Framework

I have a many-to-many relationship of products (p) and materials (m) and the products2materials table (p2m) as the many-to-many link. I need to get - all products that have materials assigned, - ...
3
votes
2answers
846 views

FULL OUTER JOIN value condition

I need to add value condition to the FULL OUTER JOIN. I.e. I'm triyng to do this: SELECT * FROM Table1 FULL OUTER JOIN Table2 ON Table1.Field1 = Table2.Field1 AND Table2.Field2 > 5 But this ...
22
votes
5answers
10k views

LINQ - Full Outer Join

I have a list of people's ID and their first name, and a list of people's ID and their surname. Some people don't have a first name and some don't have a surname; I'd like to do a full outer join on ...
37
votes
4answers
22k views

Full Outer Join in MySQL

I want to do a Full Outer Join in MySQL. Is this possible? Is a Full Outer Join supported by MySQL?
3
votes
4answers
280 views

Joining on a common table, how do you get a FULL OUTER JOIN to expand on another table?

I've scoured StackOverflow and Google for an answer to this problem. I'm trying to create a Microsot SQL Server 2008 view. Not a stored procedure. Not a function. Just a query (i.e. a view). I have ...
22
votes
4answers
13k views

How to do a full outer join in Linq?

I've inherited a database that wasn't designed exactly optimally, and I need to manipulate some data. Let me give a more common analogy of the kind of thing I have to do: Let's say we have a Student ...