Tagged Questions
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 ...
8
votes
3answers
638 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
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:
...
7
votes
7answers
990 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 ...
6
votes
2answers
183 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 ...
5
votes
5answers
2k views
SQL Joins Vs SQL Subqueries (Performance)?
I wish to know if I have a join query something like this -
Select E.Id,E.Name from Employee E join Dept D on E.DeptId=D.Id
and a subquery something like this -
Select E.Id,E.Name from Employee ...
5
votes
2answers
2k views
mysql - subqueries and joins
I'm not quite sure if this is the right approach, this is my situation:
I'm currently trying to select 15 galleries and then left join it with the user table through the id but I also want to select ...
4
votes
3answers
224 views
SQL server join vs subquery performance question
I discovered that in some cases a query like
select
usertable.userid,
(select top 1 name from nametable where userid = usertable.userid) as name
from usertable
where active = 1
takes an ...
4
votes
1answer
221 views
doing a pivot-table-ish JOIN in SQL
My employer has a batch compute cluster that processes jobs submitted by users. Each batch job consists of three steps:
job started
job finished
results reported to the user
The batch job ...
4
votes
8answers
647 views
Join query or subquery
Are there rules of thumb for developers when to use join instead of subquery or are they the same.
3
votes
4answers
105 views
sql server sub query with a comma separated resultset
I need to return records on a table and my result set needs to contain a comma separated list.
I have attached an image of the 3 tables. I need to do a select that returns the record in the first ...
3
votes
5answers
55 views
Combine MySQL queries
I am struggling to find away to combine these 2 queries... ive tried subquerys, joins, unions and have had no luck :(
Query A
SELECT DATE(crtdtime) AS cntldate, sd_class, COUNT(crtdtime) AS created
...
3
votes
1answer
70 views
MySQL optimize subqueries
I want to optimize this query (since subqueries aren't fast in general), but I'm lost because I cannot rewrite this using joins which will be better for performance, can you help mi with this?
SELECT ...
3
votes
3answers
104 views
Using Joins, Group By and Sub Queries, Oh My!
I have a database with a table for details of ponies, another for details of contacts (owners and breeders), and then several other small tables for parameters (colours, counties, area codes, etc.). ...
3
votes
4answers
377 views
SQL JOIN To Find Records That Don't Have a Matching Record With a Specific Value
I'm trying to speed up some code that I wrote years ago for my employer's purchase authorization app. Basically I have a SLOW subquery that I'd like to replace with a JOIN (if it's faster).
When ...
3
votes
3answers
140 views
How can I combine SQL queries with different expressions?
I've got three queries that are already at the peak of my SQL knowledge (Microsoft SQL 2005, if that matters) - and now I need to combine them into a single query with all of the values on a single ...
3
votes
3answers
480 views
Which is faster: JOIN with GROUP BY or a Subquery?
Let's say we have two tables: 'Car' and 'Part', with a joining table in 'Car_Part'. Say I want to see all cars that have a part 123 in them. I could do this:
SELECT Car.Col1, Car.Col2, Car.Col3
FROM ...
3
votes
4answers
691 views
How do I avoid a repetitive subquery JOIN in SQL?
In SQL Server 2008:
I have one table, and I want to do something along the following lines:
SELECT T1.stuff, T2.morestuff from
(
SELECT code, date1, date2 from Table
) as T1
INNER JOIN
(
SELECT ...
3
votes
3answers
353 views
Speeding up inner-joins and subqueries while restricting row size and table membership
I'm developing an rss feed reader that uses a bayesian filter to filter out boring blog posts.
The Stream table is meant to act as a FIFO buffer from which the webapp will consume 'entries'. I use it ...
3
votes
5answers
10k views
MySQL correlated subquery in JOIN syntax
I would like to provide a WHERE condition on an inner query by specifying innertable.id = outertable.id. However, MySQL (5.0.45) reports "Unknown column 'outertable.id' in 'where clause'". Is this ...
2
votes
3answers
37 views
mysql Subquery with JOIN bad performance
My problem is this:
select * from
(
select * from barcodesA
UNION ALL
select * from barcodesB
)
as barcodesTOTAL, boxes
where barcodesTotal.code=boxes.code;
Table ...
2
votes
2answers
34 views
Convert subquery to join
Is it possible to convert the following subquery to a JOIN, preferably without a derived table?
SELECT * FROM users u
LEFT JOIN user_groups ug ON u.usergroupid=ug.groupid
WHERE
u.userstatus=1 AND
...
2
votes
2answers
39 views
Oracle join on first row of a subquery
This may seem simple, but somehow it isn't. I have a table of historical rate data called TBL_A that looks like this:
| id | rate | added_date |
|--------|--------|--------------|
| bill | ...
2
votes
2answers
86 views
MySQL join or subquery - get product data along with first product image
I'd like to be able to return a thumbnail (first image of a set) with my product data - what is the best way to accomplish this (performance)?
I have the following tables:
products (product data)
...
2
votes
2answers
43 views
MySQL Subqueries / Joins
I have two different tables, products and inventory.
Basically, what I'm trying to accomplish is I need to loop thru every row in my products table and reference the corresponding rows in the ...
2
votes
2answers
62 views
Rewrite query to use joins instead of a subquery
I have the following query that runs as part of a CRON job, which performs very badly. I want to rewrite it, maybe converting the subquery into a join, but I'm not sure how.
The query boils down to ...
2
votes
2answers
71 views
Using join in place of this sub-query in MySQL
I have a table by the following structure and records, All i want to do is to just extract orderid of those records whose status id is either 1 or 2 , i want to exclude all orderid with statusid=3 , , ...
2
votes
2answers
69 views
Best to build a SQL Query or extrapolate with another program?
I am having trouble developing some queries on the fly for our clients and sometimes find myself asking "Would it be better to start with a subset of the data I know I'm looking for, then just import ...
2
votes
1answer
691 views
Hibernate Criteria restrict by aggregation
Background
We carry out tests on multiple items on a regular basis, which produce test results (either pass or fail). A single test can be applied to multiple items, and a single item can have ...
2
votes
1answer
319 views
MySql - Inserting multiple rows with a joined subquery?
This query will return a list of project IDs that represent forum threads:
SELECT id FROM `proj_objects` WHERE type='fthread';
This query will subscribe a user (whose ID in the users table is ...
2
votes
4answers
301 views
Help me turn a SUBQUERY into a JOIN
Two tables.
emails
id (int10) | ownership (int10)
messages
emailid (int10) indexed | message (mediumtext)
Subquery (which is terrible in mysql).
SELECT COUNT(*) FROM messages
WHERE message LIKE ...
2
votes
2answers
69 views
The best way to return related data in a SQL statement
I have a question on the best method to get back to a piece of data that is in a related table on the other side of a many-to-many relationship table.
My first method uses joins to get back to the ...
2
votes
1answer
603 views
Optimizing Multilevel MySQL subqueries (folksonomy and taxonomy)
I was reading the great tagging article by Nitin Borwankar and he started me thinking of the ways to implement differnet levels of searches using two tables.
tags {
id,
tag
}
post_tags {
id
...
2
votes
6answers
102 views
How can I SELECT the names of all groups a person belongs to using a JOIN instead of IN?
Consider the following simplified example:
CREATE TABLE groups ( gid INTEGER PRIMARY KEY, name VARCHAR(100) );
CREATE TABLE people ( pid INTEGER PRIMARY KEY );
CREATE TABLE people_groups (
gid ...
2
votes
1answer
605 views
MySQL Multiple Join/Subquery Questions
For about a year now, we’ve been allowing our users to login with usernames and/or email addresses that are not unique (though each user does have a unique id). Although the system handles duplicate ...
2
votes
2answers
3k views
SQLite query optimization (subquery and join) help
I have a table for a Statistical project.
Structure is like this:
CREATE TABLE NewStatHistory (
StatHistoryID uniqueidentifier PRIMARY KEY NOT NULL,
DateEntered dateTime NOT NULL,
...
2
votes
1answer
3k views
MSSQL JOIN ON GROUP BY is too slow
I have the following query in MSSQL
SELECT TOP 50 CustomerID FROM Ratings
WHERE CustomerID != 915
AND MovieID IN (SELECT DISTINCT MovieID FROM Ratings WHERE CustomerID = 915)
GROUP BY CustomerID
...
2
votes
6answers
6k views
How to convert a SQL subquery to a join
I have two tables with a 1:n relationship: "content" and "versioned-content-data" (for example, an article entity and all the versions created of that article). I would like to create a view that ...
2
votes
3answers
4k views
PHP/mySQL - how to fetch nested rows into multidimensinal array
Coming from another question of mine where I learnt not to EVER use db queries within loops I consequently have to learn how to fetch all the data in a convenient way before I loop through it.
Let's ...
1
vote
1answer
29 views
MySQL subquery/join help please
Ok I've got a query that's 90% there, it's just bringing up an error of "unknown column a.UserID in where clause) I've read around trying to sort the problem and found that as SQL processes inside out ...
1
vote
2answers
60 views
How to limiting subquery requests to one?
I was thinking a way to using one query with a subquery instead of using two seperate queries.
But turns out using a subquery is causing multiple requests for each row in result set. Is there a way ...
1
vote
3answers
41 views
Complicated SQL join query - get newest row
My MySQL db has a table (cfg) with 4 fields: id, name, data, and location
This one table is to service several subdomains (location). I need to get a list of the newest rows for each name for a given ...
1
vote
1answer
67 views
SQL joining, summing from sub queries to calculate a total aggregate amount
I've done all of this in active record, but it's not going to work with pagination so I'd like to switch to a SQL query with OFFSET so I can query efficiently. - Rather than getting User.all, then ...
1
vote
2answers
94 views
Convert a SQL subquery into a join when looking at another record in the same table Access 2010
I have read that Joins are more efficient than subqueries, I have a query that is extremely slow and uses lots of subqueries, therefore I would like to improve it but do not know how.
I have the ...
1
vote
1answer
67 views
Remove subquery from JOIN?
In the following query, I would like the remove the subquery from the JOIN statement (since my two SELECT statements are selecting data from same table). How can I use that alias? Thanks in advance ...
1
vote
2answers
56 views
How to rewrite SQL query that has subquery with joins
I have a SQL query that has a subquery that has joins. I would like to rewrite the query without the subquery so that I can create a view. MySQL does not allow SELECT statements where the FROM is a ...
1
vote
3answers
64 views
MySQL Optimization
I trying to speed up my site and main problem on it one query (code below) that runs on almost all pages.
LIMIT changes make speed up, but I need to use LIMIT 99 :(
On 24 speed is ~ 0.06 sec.
On 100 ~ ...
1
vote
3answers
47 views
MySQL statement that combines a sub-query and a JOIN is not working
SELECT i.id AS id, i.modify_date as modify_date, s.subscription as subscriptionid, p.paid/i.total AS paidratio
FROM invoices i,
(SELECT p.invoice, sum(amount) AS paid FROM payments p ...
1
vote
3answers
127 views
Joining MySQL Tables and Calculating Counts - Output in PHP
I am trying to query a MySQL database of available computers in a busy public computer lab. I have two tables, COMPUTERS and COMPUSE. The COMPUSE table is updated each time a user logs on or signs off ...
1
vote
2answers
97 views
Help with SQL join combined with lots of subqueries
I have limited experience with joins, and this puzzle has me stumped.
Here are the relevant tables from my mysql database:
A students table
A sections table describing sections of a given course
A ...