Tagged Questions

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 ...
2
votes
1answer
244 views

MYSQL: Avoiding cartesian product of repeating records when self-joining

There are two tables: table A and table B. They have the same columns and the data is practically identical. They both have auto-incremented IDs, the only difference between the two is that they have ...
1
vote
1answer
29 views

Need to use criteria from multiple tables to acquire data from multiple tables

I'm having a bit of a hiccup regarding a particular SQL query. I need to join data from two tables, while also limiting the data (but not necessarily grabbing it) by means of a third table. The ...
1
vote
2answers
122 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
1answer
223 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 ...
0
votes
2answers
18 views

Mysql cartesian product in where clause

What i need is cartesian product in WHERE clause: for example i have cities London, Barcelona, Milan, Paris in one variable, and Berlin in other variable.. i need all combinations in where clause ...
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 ...