Tagged Questions

17
votes
5answers
134 views

Problems getting LEFT OUTER JOIN to work

I thought I understood how left outer joins work, but I have a situation that is not working, and I'm not 100% sure if the way I have my query structured is incorrect, or if it's a data issue. For ...
15
votes
7answers
32k 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
575 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 ...
3
votes
4answers
335 views

(self,left outer,right outer,full outer) join - real world examples

can you tell me simple real-world examples for (self,left outer,right outer,full outer) join?
3
votes
1answer
3k views

Hibernate default joining for nullable many-to-one

I have a hibernate mapping like this in a ProductDfn class @ManyToOne( fetch = FetchType.LAZY, optional = true ) @JoinColumn( name = "productTypeFk", nullable = true ) public ProductType ...
2
votes
2answers
31 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
902 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
2answers
30 views

SQL Outer Join on multiple summed columns in same table

I am working with a SQL Library (Programming library, ANSI SQL Compliant, called ABS Database,(http://www.componentace.com/help/absdb_manual/absdbmanual_content.htm). It supports the various joins, ...
1
vote
1answer
59 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
3answers
66 views

How to search when joining 3 tables but exclude result for one of them in SQL?

I've been tying for hours now to get a particular result and havn't found any answer on the web - and as I'm not an SQL expert at ALL... So I have 3 tables: user (id, name...), cars(id, type, color, ...
1
vote
4answers
289 views

2 Right Outer Join in SQL Statement

I have an issue in understanding a very simple yet interesting query concerning 2 right outer joins with 'non-sequential' on-expressions. Here is the query: select * from C right outer join A on ...
1
vote
1answer
71 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, ...
1
vote
3answers
588 views

Problem with Full Outer Join not working as expected

I have a query to subtract current balance from one table with previous balance from another history table. When a particular product has no current balance but has previous balance, I am able to ...
1
vote
1answer
709 views

Good object structure for results of my Hibernate left outer join

I need to make an outer join query that retrieves all of the definitions and any properties they have associated with them that are associated with a certain company. I have two Hibernate models ...
0
votes
0answers
69 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
114 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
265 views

NHibernate HQL Query with left outer join

I would like to retrieve some data from 2 different tables. They are named 'A' and 'B'. There is also another table called 'C'. Both A and B have a reference to 'C', but 'C' does NOT have a reference ...
0
votes
2answers
153 views

Join two queries with COUNT from the same table in MySQL

I have two queries that I run in the same table: SELECT id, COUNT(up) FROM comentarios WHERE up = 1 GROUP BY id And SELECT id, COUNT(down) FROM comentarios WHERE down = 2 GROUP BY id I tried ...
0
votes
4answers
103 views

sql, outer join

I have two tables, linked with an outer join. The relationship between the primary and secondary table is a 1 to [0..n]. The secondary table includes a timestamp column indicating when the record was ...
0
votes
3answers
539 views

Nested subquery is too slow - outer join equivalent?

I'm collecting some basic statistics on our codebase and am trying to generate a query using the following schema data A files table holding all the files (synthetic Primary Key ID, unique path, ...
0
votes
1answer
298 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
3answers
189 views

Left Joins that link to multiple rows only returning one

I'm trying to join two table (call them table1 and table2) but only return 1 entry for each match. In table2, there is a column called 'current' that is either 'y', 'n', or 'null'. I have left ...
0
votes
2answers
716 views

How to implement outer join expression tree?

I need to implement the query using expressions syntax (because I don't know types in compile time). For example query like this one: from customer in Customers join purchase in Purchases on ...
-1
votes
3answers
98 views

Need help with SQL query - out join solution?

I have a database table of email addresses. I want to query it based on a set of strings. I do not just want the query results to return those email addresses contained in the set of strings - that ...