The on-clause tag has no wiki summary.
0
votes
2answers
53 views
Any possible way to add parameters to ON clause on include left joins on rails?
I have a huge complex query like this:
@objects = Object.joins({ x: :y }).includes(
[:s, { x: { y: :z } }, { l: :m },:q, :w,
{ important_thing:
[:h, :v, :c,:l, :b, { :k [:u, :a] }]
...
0
votes
2answers
133 views
Why subquery doesn't work in ON clause in DB2
Why this simple query works fine in oracle but doesn't work in DB2:
select *
from
sysibm.dual d1
left join sysibm.dual d2 on 1=1 and exists (select 1 from sysibm.dual)
Moving subquery-involving ...
0
votes
1answer
279 views
Multiple on clause using codeigniter active record
I need to do a multiple on clause on a left join query using codeigniter active record.
I write this code:
$this->db->join('table1', 'table1.col1 = table2.id', 'left');
...
1
vote
1answer
146 views
Right outer join on two tables where ON clause has a subquery
I am trying to perform a right outer join on two liferay tables — users_ and expandovalue — to get a result set.
When I did the following query on all the users, I got desired result.
...
3
votes
1answer
211 views
MySQL won't use available indexes in JOIN if OR is used in ON clause
Say you have 5 tables, with each their columns:
house (id, name, street_id)
street (id, name)
photo (id, name)
house_photo (house_id, photo_id)
street_photo (street_id, photo_id)
And say all 'id' ...
0
votes
0answers
324 views
MySQL error #1054 Unknown column 'on clause'?
I'm getting this error:
Unknown column 'b.club_id' in 'on clause'
The query is as follows:
SELECT a.id as club_id,
a.fr_name as club_name,
b.id as nation_id,
b.fr_name as ...
0
votes
1answer
234 views
Doctrine 2 and “unknown column in ”ON clause"
I am currently working in a project that is using Doctrine 2 with ZF. So far so good. However I have a problem that looks like a bug.
I have written the following code in one of my repository :
$dql ...
0
votes
1answer
80 views
Linq left joining with non trivial condition
This is fine, it produces a left join
var q =
from c in categories
join p in products
on c equals p.Category into ps
from p in ps.DefaultIfEmpty()
select new { Category = c, ...
0
votes
3answers
769 views
How do constant values effect the ON clause of Joins?
I've recently discovered that the ON clause of a LEFT JOIN may contain values such as (1 = 1).
This is upsetting to me, as it breaks my perception of how joins function.
I've encountered a more ...
93
votes
6answers
124k views
SQL join: where clause vs. on clause
After reading it, this is not a duplicate of Explicit vs Implicit SQL Joins.
The answer may be related (or even the same) but the question is different.
What is the difference and what should go in ...