Tagged Questions
16
votes
7answers
33k views
Linq to Entity with multiple left outer joins
I am trying to understand left outer joins in LINQ to Entity. For example I have the following 3 tables:
Company, CompanyProduct, Product
The CompanyProduct is linked to its two parent tables, ...
5
votes
2answers
629 views
Left Outer Join not returning all records from primary table
When I do a left outer join, I expect to get all the records that the query would return prior to adding the joined table, but it is only returning records that match the joined table (i.e: no record ...
2
votes
2answers
32 views
NHibernate - Left joins
I have the following two tables:
Jobs AreaID, JobNo (composite key)
Logs LogID, AreaID, JobNo
I need to get all jobs that don't have any logs associated with them. In SQL I could do:
SELECT ...
2
votes
2answers
33 views
Left outer join to a generated table?
Am I on completely the wrong tack ?
I want to do a left outer join to a query generated from 2 tables , but i keep getting errors. Do I need a different approach?
t1:
ID, Surname,Firstname
t2:
...
2
votes
3answers
952 views
Replace returned null values in LEFT OUTER JOIN
SELECT WO_BreakerRail.ID, indRailType.RailType, indRailType.RailCode, WO_BreakerRail.CreatedPieces, WO_BreakerRail.OutsideSource, WO_BreakerRail.Charged, WO_BreakerRail.Rejected, ...
1
vote
1answer
72 views
Left Outer Join with one result per match and “priority” of match set by a different field in match SQL Server 2005
I am trying to get a single result (PHONE) per match (CONTACT_ID) in a Left Outer Join. I imagine that there is a way to accomplish this with the preference (or order) being set by another ...
1
vote
1answer
73 views
How do I join these queries?
query1:
SELECT category.id, category.name, category.level, category.description, category.cat1, category.cat2, category.cat3, category.cat4, category.pri_color, category.sec_color, ...
0
votes
0answers
107 views
JPQL Left Join with condition
I have two tables (persistent entity class in Java) with many-to-one bidirectional relation - User(has many invitations) and Invitation(has invited user id and event name).
Im trying to select all the ...
0
votes
3answers
131 views
slow query LEFT OUTER JOIN Mysql
thanks can you help me please, I'm migrating an application and go to mysql 5.5 is very slow query returned thank you very much for your help.
SELECT DISTINCT b.cc46_cc55_field_id_id AS row_id, ...
0
votes
1answer
304 views
Left Outer Join Result Issue Using Linq to Sql
We have the following query to give us a left outer join:
(from t0 in context.accounts
join t1 in context.addresses
on new { New_AccountCode = t0.new_accountcode, ...
0
votes
2answers
368 views
Multiple left joins, how to output in php
I have 3 tables I need to join. The contracts table is the main table, the 'jobs' and 'companies' table are extra info that can be associated to the contracts table.
so, since I want all entries ...