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 ...
4
votes
2answers
511 views
Clear explanation of the “theta join” in relational algebra?
I'm looking for a clear, basic explanation of the concept of theta join in relational algebra and perhaps an example (using SQL perhaps) to illustrate its usage.
If I understand it correctly, the ...
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 ...
1
vote
1answer
131 views
Postgresql: Insert the cartesian product of two or more sets
as definition: The cartesian product of two sets is the set of all possible pairs of these sets, so {A,B} x {a,b} = {(A,a),(A,b),(B,a),(B,b)}.
Now i want to insert such a cartesian product into a ...
1
vote
2answers
121 views
performance of cross join
I am building a photo content webpage. In order to make all the combination of content, I use cross join. Let's say I have the following simple table:
table photos
id filename
------------
1 ...
1
vote
5answers
3k views
How to avoid Cartesian product in an INNER JOIN query?
I have 6 tables, let's call them a,b,c,d,e,f. Now I want to search all the colums (except the ID columns) of all tables for a certain word, let's say 'Joe'. What I did was, I made INNER JOINS over all ...
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
189 views
O/R mapping: Single complex query vs. multiple simple queries
I'm qurious on how the result set of an SQL query is transported from the server to the client.
Most O/R mappers support both eager and lazy load, both have their pros and cons.
e.g. Entity ...
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 (
...
0
votes
1answer
121 views
MySQL Multitable Query Problem
I have a problem querying multiple tables in MySQL and am currently at my wits end.
I have unique IDs in each table, and am using an INNER JOIN to combine them; I am quite new to SQL and this may be ...