Tagged Questions
The on-clause tag has no wiki summary.
37
votes
6answers
53k 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 ...
0
votes
0answers
51 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
87 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
59 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
225 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 ...