Tagged Questions

5
votes
2answers
2k views

Mixing implicit and explicit JOINs

I am having a problem with Hibernate generating invalid SQL. Specifically, mixing and matching implicit and explicit joins. This seems to be an open bug. However, I'm not sure why this is invalid ...
3
votes
1answer
70 views

SQLite accepts non-existing join types in SQL syntax

I found this unexpected behavior with SQLite. It appears that SQLite accepts arbitrary keywords in SQL join syntax. If I accidentally type nautral join instead of natural join a cartesian product is ...
2
votes
1answer
105 views

Are all MySQL joins selections on the Cartesian product?

On reading the documentation of the MySQL join commands, it looks like all the joins are analogous to , by simply finding the Cartesian product and then selecting from that result. Is this an accurate ...
1
vote
1answer
221 views

Multiple many-to-many JOINs in a single mysql query without Cartesian Product

At the moment I can get the results I need with two seperate SELECT statements SELECT COUNT(rl.refBiblioID) FROM biblioList bl LEFT JOIN refList rl ON bl.biblioID = rl.biblioID GROUP BY ...
1
vote
2answers
811 views

SQL cartesian join problem

I have three tables A: A.pID primary key, A.Name nvarchar(250) B: B.pID primary key, B.Name nvarchar(250) C: C.pID primary key, C.Name nvarchar(250) There is a m to n relation between A and B ...
0
votes
1answer
78 views

Multiple Join Multipliers

I have 3 tables: Insurance Policies, Claims and Receivables I need a query that will return one row per policy period per policy. The query needs to include the policy start and end date, total ...
0
votes
2answers
137 views

duplicates in a join

the following SQL is returning every BT.Bt_Name where L.date_back is Null. I only wish to select the BT.Bt_Names where L.Bc_id is duplicated SELECT BT.Bt_Name FROM Book_Title BT INNER JOIN ( ...