Tagged Questions

94
votes
22answers
4k views

Joins are for lazy people?

I recently had a discussion with another developer who claimed to me that JOINs (SQL) are useless. This is technically true but he added that using joins is less efficient than making several requests ...
75
votes
15answers
17k 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 ...
64
votes
10answers
11k views

What is the difference between Left, Right, Outer and Inner Joins?

I am wondering how to differentiate all these different joins ...
64
votes
5answers
138k views

SQL update from one Table to another based on a ID match

I realy hope someone can help me with this. I have a databse with Account Numbers and card Numbers that I match to a file to update any card numbers to account number so I only work with account ...
43
votes
11answers
18k views

INNER JOIN ON vs WHERE clause

For simplicity, assume all relevant fields are NOT NULL. You can do: SELECT table1.this, table2.that, table2.somethingelse FROM table1, table2 WHERE table1.foreignkey = table2.primarykey ...
42
votes
4answers
21k views

Difference between JOIN and INNER JOIN

Both these joins will give me the same results: SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK vs SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTable.FK Is there ...
38
votes
16answers
2k views

Why are joins bad when considering scalability?

Why are joins bad or 'slow'. I know i heard this more then once. I found this quote The problem is joins are relatively slow, especially over very large data sets, and if they are slow your ...
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 ...
37
votes
9answers
13k 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 ...
27
votes
8answers
6k views

Join vs. subquery

I am an old-school MySQL user and always preferred JOIN over sub-query. But nowadays everyone uses sub-query and I hate it, dunno why. Though I've lack of theoretical knowledge to judge myself if ...
27
votes
10answers
2k 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 ...
20
votes
10answers
42k views

SQL left join vs multiple tables on FROM line?

Most SQL dialects accept both the following queries: SELECT a.foo, b.foo FROM a, b WHERE a.x = b.x SELECT a.foo, b.foo FROM a LEFT JOIN b ON a.x = b.x Now obviously when you need an outer join, ...
17
votes
5answers
139 views

Problems getting LEFT OUTER JOIN to work

I thought I understood how left outer joins work, but I have a situation that is not working, and I'm not 100% sure if the way I have my query structured is incorrect, or if it's a data issue. For ...
16
votes
13answers
11k views

SQL select join: is it possible to prefix all columns as 'prefix.*'?

I'm wondering if this is possible in SQL. Say you have two tables A and B, and you do a select on table A and join on table B: SELECT a.*, b.* FROM TABLE_A a JOIN TABLE_B b USING (some_id); If ...
14
votes
4answers
4k views

SQL join: selecting the last records in a one-to-many relationship

Suppose I have a table of customers and a table of purchases. Each purchase belongs to one customer. I want to get a list of all customers along with their last purchase in one SELECT statement. What ...
13
votes
13answers
2k 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 ...
12
votes
4answers
1k views

Difference between JOIN and OUTER JOIN in MySQL

What is the difference in results between: RIGHT JOIN and RIGHT OUTER JOIN LEFT JOIN and LEFT OUTER JOIN ? Can you please explain it through some examples?
12
votes
10answers
4k 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, ...
10
votes
6answers
298 views

High-performance multi-tier tag filtering

I have a large database of artists, albums, and tracks. Each of these items may have one or more tags assigned via glue tables (track_attributes, album_attributes, artist_attributes). There are ...
10
votes
5answers
766 views

What's the difference between (INNER JOIN,LEFT JOIN,RIGHT JOIN,FULL JOIN) in Mysql

I want to know What's the difference between INNER JOIN,LEFT JOIN,RIGHT JOIN,FULL JOIN in Mysql i'm confused in that
10
votes
4answers
3k views

Understanding how JOIN works when 3 or more tables are involved. [SQL]

I wonder if anyone can help improve my understanding of JOINs in SQL. [If it is significant to the problem, I am thinking MS SQL Server specifically.] Take 3 tables A, B [A related to be by some ...
9
votes
5answers
327 views

Difference between “and” and “where” in joins

Whats the difference between SELECT DISTINCT field1 FROM table1 cd JOIN table2 ON cd.Company = table2.Name and table2.Id IN (2728) and SELECT DISTINCT field1 FROM ...
9
votes
3answers
5k views

Different between Oracle's plus notation over ansi join notation?

What's the difference between using oracle's plus notation over the ansi standard 'join' notation? Is there a difference in performance? Is the plus notation deprecated? Thanks
9
votes
8answers
2k views

What are the uses for Cross Join?

A cross join performs a cartesian product on the tuples of the two sets. SELECT * FROM Table1 CROSS JOIN Table2 Which circumstances render such an SQL operation particularly useful?
9
votes
3answers
4k 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, ...
8
votes
3answers
123 views

Interesting SQL Join on dates between dates

First off, thanks to anyone who helps me solve this problem. I am using SQL 2005, but can use 2008 if no solution is available in 05. I have a rows of data that look like such: select * from ...
8
votes
5answers
488 views

SQL JOIN: is there a difference between USING, ON or WHERE?

I was wondering if there is any difference in the way SQL performs on these join statements: SELECT * FROM a,b WHERE a.ID = b.ID SELECT * FROM a JOIN b ON a.ID = b.ID SELECT * FROM a JOIN b ...
8
votes
3answers
639 views

When to use SQL sub-queries versus a standard join?

I am working on rewriting some poorly written SQL queries and they are over-utilizing sub-queries. I am looking for best-practices regarding the use of sub-queries. Any help would be appreciated.
8
votes
9answers
437 views

SQL Joins: Future of the SQL ANSI Standard (where vs join)?

We are developing ETL jobs and our consultant have been using "old style" SQL when joining tables select a.attr1, b.attr1 from table1 a, table2 b where a.attr2 = b.attr2 instead of using inner join ...
8
votes
6answers
509 views

In MySQL, what is the most effective query design for joining large tables with many to many relationships between the join predicates?

In our application, we collect data on automotive engine performance -- basically source data on engine performance based on the engine type, the vehicle running it and the engine design. Currently, ...
8
votes
3answers
112 views

Help with SQL statement (JOIN)

I'm having some trouble with an SQL statement that have to find the number of students attending a course. My Database design look likes this: Table Course: id | course_name Table Student: id | name ...
8
votes
6answers
366 views

Where are Cartesian Joins used in real life?

Where are Cartesian Joins used in real life? Can some one please give examples of such a Join in any SQL database.
8
votes
8answers
15k views

T-SQL Subquery Max(Date) and Joins

I'm trying to join multiple tables, but one of the tables has multiple records for a partid with different dates. I want to get the record with the most recent date. Here are some example tables: ...
8
votes
5answers
3k views

Transact-SQL shorthand join syntax?

I have noticed a few times when working on legacy code, that you can do left and right outer joins in sql by using the =* as kind of shorthand for "right outer join" and *= as kind of shorthand ...
8
votes
5answers
979 views

How do I join the most recent row in one table to another table?

I have data that looks like this: entities id name 1 Apple 2 Orange 3 Banana Periodically, a process will run and give a score to each entity. The process ...
7
votes
2answers
105 views

What type of join is '…where A.ID = B.ID (+)'

I've come across such code which I need to re-write using ANSI Standard and I want to make sure I'm keeping the joins correct. Also, what convention is this? What is the syntax for the other types ...
7
votes
3answers
132 views

MySQL - Show record pairs in one record

I have the following data in one table: Time, Type, Kilometers 12:00, 1, 0.1 12:30, 2, 0.2 14:00, 1, 0.4 15:00, 2, 1.0 16:00, 1, 1.2 16:30, 2, 1.5 16:45, 1, 2.0 This data is sorted chronologically ...
7
votes
6answers
239 views

Advanced SQL Select Query

week cookie 1 a 1 b 1 c 1 d 2 a 2 b 3 a 3 c 3 d This table represent someone visits a website in a particular week. ...
7
votes
6answers
72 views

Join votes table and sum all votes

I've got two tables. One of them contains quotes and the other one lists all given votes (either +1 or -1) for each quote. For demonstration purposes I've made simplified versions of the two tables: ...
7
votes
1answer
133 views

Is having an 'OR' in an INNER JOIN condition a bad idea?

In trying to improve the speed of an immensely slow query (several minutes on two tables with only ~50,000 rows each, on SQL Server 2008 if it matters), I narrowed down the problem to an OR in my ...
7
votes
2answers
185 views

Is there ever a case in SQL where a subquery is more efficient than a join?

I've seen people hypothetically say that there are cases when a subquery can be more efficient than a join but I have never actually seen a good example of this? What would be a case when you would ...
7
votes
4answers
134 views

What type of Join to use?

I've got a core table and and 3 tables that extend the 'core' table in different ways. I'm working with MLS data and I have a 'common' table that contains information common to all mls listings and ...
7
votes
10answers
463 views

How do I translate a simple boolean statement to SQL?

I have the following database table with information about people, diseases, and drugs: PERSON_T DISEASE_T DRUG_T ========= ========== ======== ...
7
votes
3answers
2k views

Join operation with NOSQL

I have gone through some articles regarding Bigtable and NOSQL. It is very interesting that they avoid JOIN operations. As a basic example, let's take Employee and Department table and assume the ...
7
votes
7answers
991 views

Procedurally transform subquery into join

Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a syntactically ...
7
votes
5answers
4k views

Simplest way to do a recursive self-join in SQL Server?

What is the simplest way of doing a recursive self-join in SQL Server? I have a table like this: PersonID | Initials | ParentID 1 CJ NULL 2 EB 1 3 MB ...
7
votes
6answers
1k views

How do I make DBIx::Class join tables using other operators than `=`?

Summary I've got a table of items that go in pairs. I'd like to self-join it so I can retrieve both sides of the pair in a single query. It's valid SQL (I think), the SQLite engine actually does ...
7
votes
4answers
2k views

Should I use the sql JOIN keyword for complex joins on multiple tables?

I've got the following request : select * from tbA A, tbB B, tbC C, tbD D where A.ID=B.ID and B.ID2= C.ID2 and A.ID=D.ID and C.ID3=D.ID3 and B.ID4=D.ID4 and A.Foo='Foo' I've heard ...
7
votes
8answers
9k views

SQL query - Join that returns the first two records of joining table

I have two tables: Patient pkPatientId FirstName Surname PatientStatus pkPatientStatusId fkPatientId StatusCode StartDate EndDate Patient -> PatientStatus is a one to many relationship. I ...
7
votes
5answers
1k views

SQL query: Simulating an “AND” over several rows instead of sub-querying

Suppose I have a "tags" table with two columns: tagid and contentid. Each row represents a tag assigned to a piece of content. I want a query that will give me the contentid of every piece of ...

1 2 3 4 5 37