Tagged Questions
a left join is an outer join which generates a result that contains all the records of the "left" table even when there is no matching records in other tables taking part in the join
52
votes
4answers
41k views
Linq to Sql: Multiple left outer joins
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.
T-SQL
...
21
votes
8answers
2k views
Is too many Left Joins a code smell?
If you have for example > 5 left joins in a query is that a code smell that there is ...
something wrong with your design?
you're doing too much in one query?
you're database is too normalized?
13
votes
5answers
39k views
LINQ Inner-Join vs Left-Join
Using extension syntax I'm trying to create a left-join using LINQ on two lists that I have. The following is from the Microsoft help but I've modified it to show that the pets list has no elements. ...
11
votes
1answer
11k views
Rails ActiveRecord :joins with LEFT JOIN instead of INNER JOIN
I have this code
User.find(:all, :limit => 10, :joins => :user_points,
:select => "users.*, count(user_points.id)", :group =>
"user_points.user_id")
...
9
votes
4answers
128 views
oracle query to mysql left joins
i migrated the company oracle database to mysql (yeah don't ask me why) and few queries (for reporting) are huge and working in mysql
one of them is 4021 lines with 89 INNER JOIN
this one generates ...
9
votes
3answers
4k views
Help with a WHERE on a LEFT JOIN SQL Query
I'm trying to construct a query that will include a column indicating whether or not a user has downloaded a document. I have a table called HasDownloaded with the following columns: id, documentID, ...
7
votes
1answer
2k views
Is an outer join possible with Linq to Entity Framework
There are many examples of outer join using Linq to Sql, all of them hinging on DefaultIfEmpty() which is not supported with Linq to Entity Framework.
Does this mean that outer join is not possible ...
7
votes
3answers
3k views
Left join using LINQ
Could someone give me an example of how to perform a left join operation using LINQ/lambda expressions?
6
votes
6answers
169 views
Using IS NULL or IS NOT NULL on join conditions - Theory question
Theory question here:
Why does specifying table.field IS NULL or table.field IS NOT NULL not work on a join condition (left or right join for instance) but only in the where condition?
Non working ...
6
votes
4answers
151 views
How to join mysql tables
I've an old table like this:
user> id | name | address | comments
And now I've to create an "alias" table to allow some users to have an alias name for some reasons. I've created a new table ...
6
votes
6answers
4k views
TSQL left join and only last row from right
I'm writing sql query to get post and only last comment of this post(if exists).
But I can't find a way to limit only 1 row for right column in left join.
Here is sample of this query.
SELECT ...
6
votes
1answer
5k views
How do you left join in Linq if there is more than one field in the join?
I asked a question earlier about why left joins in Linq can't use defined relationships; to date I haven't got a satisfactory response.
Now, on a parallel track, I've accepted that I need to use the ...
5
votes
4answers
98 views
Why is mySQL query, left join 'considerably' faster than my inner join
I've researched this, but I still cannot explain why:
SELECT cl.`cl_boolean`, l.`l_name`
FROM `card_legality` cl
INNER JOIN `legality` l ON l.`legality_id` = cl.`legality_id`
WHERE cl.`card_id` = ...
5
votes
3answers
210 views
Reduce usage of LEFT JOIN in queries with include
I'm getting very ugly SQL queries with Rails code like one listed below:
Facility.includes(:type, :owner_building, :delegated_building, keeper_building, :owner_user, :keeper_user).order('users.name ...
5
votes
3answers
316 views
subquery or leftjoin with group by which one is faster?
i have to show running total with the total column in my application ... so i have used the following queries for finding the running total... and i find that both are working as per my need . in one ...
5
votes
3answers
842 views
Can I perform this Android query with ContentResolver.query()? (LEFT JOIN and CASE)
I am looking to perform the following query (in pseudo-code) on Android:
SELECT C.ID, C.NAME, CASE ISNULL(G.GROUPID,0) = 0 THEN 0 ELSE 1 END INGROUP
FROM CONTACTS C
LEFT JOIN GROUPMEMBERSHIP G ON ...
5
votes
1answer
461 views
QuerySet: LEFT JOIN with AND
I use old Django version 1.1 with hack, that support join in extra(). It works, but now is time for changes. Django 1.2 use RawQuerySet so I've rewritten my code for that solution. Problem is, that ...
5
votes
1answer
1k views
nHibernate 3 - Left Join re-Linq solution
I am trying to to run this Linq query below with nHibernate 3.
var items = from c in session.Query<tbla>()
join t in session.Query<tblb>() on c.Id equals t.SomeId into t1 // use ...
5
votes
1answer
1k views
LEFT JOIN in Hibernate Query Language
I am trying to do a LEFT JOIN in Hibernate Query Language, in MySQL I can do this as follows:
select * from day_timetable_timeslots t LEFT JOIN golfnine_date_time_entity d ON d.start_time = ...
5
votes
2answers
264 views
Optimize LEFT JOIN on table with 30 000+ rows
I have a website where visitors can leave comments. I want to add the ability to answer comments (i.e. nested comments).
At first this query was fast but after I populated the table with the existing ...
5
votes
7answers
447 views
SQL Standard Regarding Left Outer Join and Where Conditions
I am getting different results based on a filter condition in a query based on where I place the filter condition. My questions are:
Is there a technical difference
between these queries?
Is there ...
5
votes
6answers
22k views
Left outer join on two columns performance issue
I'm using a SQL query that is similar to the following form:
SELECT col1, col2
FROM table1
LEFT OUTER JOIN table2
ON table1.person_uid = table2.person_uid
AND table1.period = table2.period
And it's ...
5
votes
5answers
2k views
Interesting Many-many sql join
I have three related tables "A(id, val)", "B(id, val)", and a link table with a value "AB(aid, bid, val)"
I am querying against B to bring back A values, for example:
SELECT A.*
FROM A INNER JOIN ...
4
votes
2answers
69 views
left join optimisation
I have a database similar to the simplified one below. I need to retrieve columns: col8, col9, col10, col11, col12 (the ones I've circled
Currently, I;m using a left join to join each table but this ...
4
votes
2answers
78 views
Left Outer Join Does not preserve Left Table
I have this query:
SELECT Q_ID,
Q_DESC,
COUNT(Q_ID)
FROM #tmp_rep
LEFT OUTER JOIN po_Questions po
ON Q_ID = Certificate AND FUNCS = 1
AND LEN(LTRIM(RTRIM(po.UserName))) ...
4
votes
2answers
142 views
SQL Left Join - same results multiple times
I have the following tables:
users
id | name
info
id | info | user_id
(user_id from table info is foreign key => connects to id from table users)
It is possible that the user will have many ...
4
votes
1answer
218 views
doing a pivot-table-ish JOIN in SQL
My employer has a batch compute cluster that processes jobs submitted by users. Each batch job consists of three steps:
job started
job finished
results reported to the user
The batch job ...
4
votes
1answer
206 views
How to do left outer joins with DbLinq and SQLite?
I tried
db.Table1.GroupJoin(db.Table2,
t1 => t1.Id,
t2 => t2.t1Id,
(t1,g) => new { t1, g })
.Where(item => !item.g.Any())
.Select(item => item.t1);
But it returned 0 ...
4
votes
8answers
248 views
SQL: Speed Improvement - Left Join on cond1 or cond2
SELECT DISTINCT a.*, b.*
FROM current_tbl a
LEFT JOIN import_tbl b
ON ( a.user_id = b.user_id
OR ( a.f_name||' '||a.l_name = b.f_name||' ...
4
votes
2answers
395 views
how to write conditional left join
I have 2 tables named user and userFriend. I want all user from user table, and specific member from userFriend table. Then I want to join both of them...
user
userID userName
1 aaa
2 ...
4
votes
3answers
181 views
Please help transform Tsql “implicit joins” into explicit ones
Sorry, I am pretty much an SQL noob. This has to work in MSFT SQL, Oracle as well as Sybase. In the following snippet I need to change an inner join between IJ and KL on IJ.PO_id = KL.PO_id into a ...
4
votes
4answers
385 views
How to limit results of a LEFT JOIN
Take the case of two tables: tbl_product and tbl_transaction.
tbl_product lists product details including names and ids while tbl_transaction lists transactions involving the products and includes ...
4
votes
4answers
1k views
Mysql Left Join Null Result
I have this query
SELECT articles.*,
users.username AS `user`
FROM `articles`
LEFT JOIN `users` ON articles.user_id = users.id
ORDER BY articles.timestamp
Basically it returns the ...
4
votes
1answer
1k views
NHibernate Left Outer Join
I'm looking to create a Left outer join Nhibernate query with multiple on statements akin to this:
SELECT
*
FROM [Database].[dbo].[Posts] p
LEFT JOIN
[Database].[dbo].[PostInteractions] i
...
4
votes
2answers
5k views
Remove Duplicates from LEFT OUTER JOIN
Hey folk
my question is quite similar to http://stackoverflow.com/questions/757957/restricting-a-left-join
I have a variation in that request though and the comment didn't allow too many characters ...
4
votes
6answers
215 views
Is it a Good Practice to Add two Conditions when using a JOIN keyword?
I'd like to know if having to conditionals when using a JOIN keyword is a good practice.
I'm trying to filter this resultset by date but I'm unable to get all the branches listed even if there's no ...
4
votes
3answers
636 views
Should left outer joins be avoided in DB2
We are having a debate in our company. I use left outer joins quit frequently. I was told by another programmer that there is too much over head and I should not use them. Example, Lets say I have ...
4
votes
3answers
4k views
MySQL: Removing duplicate columns on Left Join, 3 tables
I have a table that uses 3 foreign keys into other tables. When I perform a left join, I get duplicate columns. MySQL says that the USING syntax will reduce the duplicate columns, but there aren't ...
4
votes
9answers
1k views
Oracle joins ( left outer, right, etc. :S )
I knew stackoverflow would help me for other than know what is the "favorite programming cartoon" :P
This was the accepted answer by:
Bill Karwin
Thanks to all for the help ( I would like to double ...
3
votes
3answers
32 views
mysql - JOIN or UNION - not sure which, maybe both
I want to combine data from two files but I am having trouble expressing the sort. I want to sort on either the CREATED date from the first file and the SHARED_DATE from the second file if it exists ...
3
votes
1answer
75 views
ColdFusion 9 ORM “LEFT JOIN” in Join Mapping
It's been a while since I last used the Hibernate implementation in CF9 and right now I'm at a point where I can't see the woods for all the trees (probably not enough coffee).
I've simplified the ...
3
votes
3answers
27 views
What's happening in this MYSQL query with a left join and a group by (on the wrong column)?
I have the following tables:
create temporary table Items (item_id int, item_name varchar(10));
create temporary table ItemRating (item_id int, rating int);
With the following data:
insert into ...
3
votes
2answers
61 views
Improve performance with LEFT JOIN
I have a mysql query that has 5 or 6 LEFT JOINS. As expected, this is pretty slow. Considering that I'm only expecting ~100 results, might it make more sense for me to run lots of separate sql queries ...
3
votes
2answers
64 views
mysql slow performance on a small table with join query
I have a couple of tables that i join together when i execute the following query:
SELECT article.year, authors.last_name, count(DISTINCT article.id) as count FROM
article LEFT JOIN authors ON ...
3
votes
4answers
63 views
Can I specify the order in which the joins occur?
Say I have three tables, A, B and C. Conceptually A (optionally) has one B, and B (always) has one C.
Table A:
a_id
... other stuff
Table B:
a_fk_id (foreign key to A.a_id, unique, primary, not ...
3
votes
4answers
104 views
MySQL Left Join + Min
Seemingly simple MySQL question, but I've never had to do this before..
I have two tables, items and prices, with a one-to-many relationship.
Items Table
id, name
Prices Table
id, item_id, price
...
3
votes
2answers
125 views
Problem with nested left-joins and coalesce
I have strange issue with nested left-joins in postgresql... It's hard to explain, but easy to show =) here we are:
SELECT * FROM
(
SELECT 1 as key1
) sub1
LEFT JOIN
(
SELECT sub3.key3, ...
3
votes
4answers
110 views
SQLite tricky if join
I have the following two tables:
T1 (id,name)
T2 (id,hybrid_col)
What I want to do is select all from T2 and JOIN with T1 if hybrid_col is numeric.
Basically, hybrid_col holds an id reference to T1 ...
3
votes
1answer
255 views
generic method to get linq result to datatable for select new with multiple selects
I'm trying to get the result of a join query with multiple selects into a dataTable, without selecting every fields separately.
This is the setup:
public class info
{
public int id {get;set;}
...
3
votes
2answers
58 views
LEFT JOIN 3 columns to get username
I have three columns I need to join which comes from 3 different tables,
Contributions table:
+-----------+---------------------+
| record_id | contributor_user_id |
...