50
votes
7answers
3k views
When and why are database joins expensive?
I'm doing some research into databases and I'm looking at some limitations of relational DBs.
I'm getting that joins of large tables is very expensive, but I'm not completely sure why. What does the …
24
votes
9answers
2k views
What is the difference between Left, Right, Outer and Inner Joins?
I am wondering how to differentiate all these different joins ...
24
votes
15answers
2k views
Subqueries vs joins
I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like
where id in (select id from ... )
The refactored query runs about …
15
votes
10answers
889 views
Is there something wrong with joins that don’t use the JOIN keyword in SQL or MySQL?
When I started writing database queries I didn't know the JOIN keyword yet and naturally I just extended what I already knew and wrote queries like this:
SELECT a.someRow, b.someRow
FROM tableA AS …
12
votes
6answers
407 views
Joining a set of ordered-integer yielding Python iterators.
Here is a seemingly simple problem: given a list of iterators that yield sequences of integers in ascending order, write a concise generator that yields only the integers that appear in every …
12
votes
14answers
652 views
How can I make sure N threads run at roughly the same speed?
I'm toying with the idea of writing a physics simulation software in which each physical element would be simulated in its own thread.
There would be several advantages to this approach. It would be …
10
votes
13answers
581 views
IN vs. JOIN with large rowsets
I'm wanting to select rows in a table where the primary key is in another table. I'm not sure if I should use a JOIN or the IN operator in SQL Server 2005. Is there any significant performance …
9
votes
2answers
209 views
Thread.join not behaving as I expected in scala
In the code below I create 20 threads, have them each print out a message, sleep, and print another message. I start the threads in my main thread and then join all of the threads as well. I would …
9
votes
6answers
4k views
Python join, why is it string.join(list) instead of list.join(string)?
This has always confused me. It seems like this would be nicer:
my_list = ["Hello", "world"]
print my_list.join("-")
# Produce: "Hello-world"
Than this:
my_list = ["Hello", "world"]
print …
9
votes
9answers
2k views
Explicit vs implicit SQL joins
Is there any efficiency difference in an explicit vs implicit inner join?
For example:
select * from
table a inner join table b
on a.id = b.id;
vs.
select a.*, b.*
from table a, table b
where a.id …
8
votes
5answers
613 views
How do I render thick 2D lines as polygons?
I have a path made up of a list of 2D points. I want to turn these into a strip of triangles in order to render a textured line with a specified thickness (and other such things). So essentially the …
7
votes
4answers
1k views
Linq To Sql Many-Many Join Table
I am a somewhat experienced Rails developer and I thought I would try out ASP.NET's version of MVC. In doing so I also decided to try Linq->Sql...
I am a bit confused about the way Linq->Sql handles …
7
votes
3answers
811 views
Help with a WHERE on a LEFT JOIN SQL Query
I'm trying to construct a query that will include a column indicating whether or not a user has downloaded a document. I have a table called HasDownloaded with the following columns: id, documentID, …
7
votes
6answers
3k views
Combine multiple results in a subquery into a single comma-separated value
Hi,
I'm sorry if the question is long-winded and/or unclear. I will try and make it clearer with any feedback I get.
I've got two tables:
TableA
ID, Name
TableB
ID, SomeColumn, TableA_ID (FK for …
6
votes
10answers
487 views
Is a JOIN faster than a WHERE ?
Suppose I have two tables that are linked (one has a foreign key to the other) :
CREATE TABLE Document (
Id INT PRIMARY KEY,
Name VARCHAR 255
)
CREATE TABLE DocumentStats (
Id INT PRIMARY KEY,
…
