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
1answer
87 views

Are SQL ANY and SOME keywords synonyms in all SQL dialects?

In Postgres, ANY and SOME are synonyms when used on the right hand side of a predicate expression. For example, these are the same: column = ANY (SELECT ...) column = SOME (SELECT ...) This is ...
8
votes
3answers
635 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
1answer
94 views

How can you get a histogram of counts from a join table without using a subquery?

I have a lot of tables that look like this: (id, user_id, object_id). I am often interested in the question "how many users have one object? how many have two? etc." and would like to see the ...
7
votes
3answers
543 views

The purpose of SQL's EXISTS and NOT EXISTS

Every now and then I see these being used, but it never seems to be anything that can't be performed as equally well, if not better, by using a normal join or subquery. I see them as being misleading ...
7
votes
7answers
987 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
3answers
4k views

MySQL: Returning multiple columns from an in-line subquery

I'm creating an SQL statement that will return a month by month summary on sales. The summary will list some simple columns for the date, total number of sales and the total value of sales. However, ...
7
votes
8answers
10k views

Max of Sum in SQL

I have a list of stores, departments within the stores, and sales for each department, like so (created using max(sales) in a subquery, but that's not terribly important here I don't think): toronto ...
6
votes
2answers
182 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 ...
6
votes
7answers
1k views

SELECT with multiple subqueries to same table

I'm using the same SQL pattern over and over, and I know there has to be a better way, but I'm having trouble piecing it together. Here's a simple version of the pattern, where I'm pulling back the ...
6
votes
3answers
14k views

MySQL/SQL: Update with correlated subquery from the updated table itself

I have a generic question that I will try to explain using an example. Say I have a table with the fields: "id", "name", "category", "appearances" and "ratio" The idea is that I have several items, ...
5
votes
2answers
194 views

Selecting COUNT from different criteria on a table

I have a table named 'jobs'. For a particular user a job can be active, archived, overdue, pending, or closed. Right now every page request is generating 5 COUNT queries and in an attempt at ...
5
votes
1answer
111 views

MySQL thinks subquery is derived when it is not!

EXPLAIN SELECT node_id FROM node WHERE person_id IN (SELECT person_id FROM user WHERE is_locked = 0); Results in ...
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
4answers
211 views

Select items that are the top N results for a related table

Say I have a game where a question is asked, people post responses which are scored, and the top 10 responses win. I have a SQL database that stores all of this information, so I might have tables ...
5
votes
2answers
700 views

Multiple column subselect in mysql 5 (5.1.42)

This one seems to be a simple problem, but I can't make it work in a single select or nested select. Retrieve the authors and (if any) advisers of a paper (article) into one row. I order to explain ...
5
votes
2answers
477 views

Can we write subquery in between SELECT and FROM

i want to know, how to write subquery in between SELECT and FROM as SELECT Col_Name,(Subquery) From Table_Name Where Some_condition
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 ...
5
votes
3answers
10k views

SQL Exclude LIKE items from table

I'm trying to figure out how to exclude items from a select statement from table A using an exclusion list from table B. The catch is that I'm excluding based on the prefix of a field. So a field ...
5
votes
5answers
2k views

Interesting Many-many sql join

I have three related tables "A(id, val)", "B(id, val)", and a link table with a value "AB(aid, bid, val)" I am querying against B to bring back A values, for example: SELECT A.* FROM A INNER JOIN ...
4
votes
2answers
50 views

Counting Customers in different ways - Do I need a SubQuery?

Thanks for taking the time to read my question. Imagine a situation where a customer is given a free gift if they open an account. Some ‘customers’ open an account to get the free gift, but never add ...
4
votes
2answers
179 views

Optimizing SQL “Where” clause for queries with subqueries

Let's say I have the following hypothetical data structure: create table "country" ( country_id integer, country_name varchar(50), continent varchar(50), constraint country_pkey primary key ...
4
votes
3answers
221 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
4answers
76 views

Whether Inner Queries Are Okay?

I often see something like... SELECT events.id, events.begin_on, events.name FROM events WHERE events.user_id IN ( SELECT contacts.user_id FROM contacts ...
4
votes
1answer
218 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
4answers
530 views

oracle: decode and subquery select result

I have a oracle query and part of it is calculating some value using DECODE. For example: SELECT ..., (SELECT DECODE((SELECT 23 FROM DUAL), 0, null, ...
4
votes
3answers
179 views

SQL Server - Counting number of times an attribute in a dataset changes (non-concurrently)

I have a query that returns either a 1 or 0 based on whether or not an event occurred on a given date. This is ordered by date. Basically, a simple result set is: Date | Type ...
4
votes
1answer
201 views

SQLite outer query is returning results not found in inner query

I just wondered if anyone has run into a case in SQLite (3.7.4) where a query would return one set of results, and when it becomes a subquery the results are completely different? I found the problem ...
4
votes
4answers
387 views

How to limit results of a LEFT JOIN

Take the case of two tables: tbl_product and tbl_transaction. tbl_product lists product details including names and ids while tbl_transaction lists transactions involving the products and includes ...
4
votes
5answers
326 views

Subquery and selecting oldest rows for multiple foreign keys in MySQL

I have two tables: product (idproduct, name, description, tax) product_storage (idstorage, idproduct, added, quantity, price) for each product it could be different price and oldest are ...
4
votes
9answers
1k views

Is order by clause allowed in a subquery

Is there any reason why or why not you should do an 'order by' in a subquery?
4
votes
8answers
646 views

Join query or subquery

Are there rules of thumb for developers when to use join instead of subquery or are they the same.
4
votes
5answers
11k views

Oracle: Combine multiple results in a subquery into a single comma-separated value

I'm trying to convert a single-columned subquery into a command-separated VARCHAR-typed list of values. This is identical to this question, but for Oracle rather than SQL Server or MySQL.
3
votes
3answers
69 views

Calculating difference from previous record

May I ask for your help with the following please ? I am trying to calculate a change from one record to the next in my results. It will probably help if I show you my current query and results ... ...
3
votes
1answer
76 views

JPA subquery in from clause

We're developing a web application which uses EJB to connect to a database. In our DB model, we have a mobile devices table, another one with features, and the last one that maps the values of the ...
3
votes
4answers
101 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
3answers
103 views

Need help with a tough SQL query

I have a query that I am currently getting the ORA-01427: single-row subquery returns more than one row error on. I understand the error, and what is causing it, but cant figure out a way to fix it. ...
3
votes
4answers
109 views

Dynamically select the columns to be used in a SELECT statement

I would love to be able to use the system tables (Oracle in this case) to drive which fields are used in a SELECT statement. Something like: SELECT ( select column_name from all_tab_cols where ...
3
votes
2answers
96 views

SubQuery on Single Table

Ok so I have a table Tasks -- TaskId (unique autoinc primary) ChildOf (Contains task ID of parent, or 0 if top tier (no parent)) I need to write a query that selects all records with ChildOf = ...
3
votes
1answer
81 views

How to select from a previous xml query result

I am working with an oracle 11g r2 database and basically need to be able to be able to parse and select some nodes from it. I've spent hours scouring the net and reading the oracle xml db manual ...
3
votes
6answers
355 views

sql sub-queries

Can anyone help me with the following: Some countries have populations more than three times that of any of their neighbours (in the same region). Give the countries and regions. my try: ...
3
votes
2answers
91 views

ZF Sub Query Question

I've got a user table with user_id as the primary key and a user_dates table which has user_date_id as the primary key, user_id which links to the user table and start_date and end_date fields. I am ...
3
votes
2answers
190 views

how to return row count of mysql sub query

I have the following SQL query: SELECT games.id, games.GameTitle FROM games WHERE EXISTS ( SELECT filename FROM banners WHERE banners.keyvalue = games.id ...
3
votes
1answer
49 views

mysql ordering solution: will it work consistantly?

I had this query: SELECT `name`, floor(max(score)), skill FROM (SELECT k.`name`, s.`name` as skill, *long complex formula* as score FROM `keywords_skills` ks JOIN keywords k ON k.id = ...
3
votes
2answers
159 views

Accessing a field in a sub-subquery SQL

I have a fairly complex query in which I am working with with multiple nested layers of queries. One of the requirements of the query is that I access a field from a subquery's subquery in the main ...
3
votes
4answers
368 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
139 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
4answers
142 views

Is it possible for a subquery to return two values?

Is it possible for a subquery to return two values onto the outer query? Such as: SELECT 1, (SELECT COUNT(*), MAX(*) FROM test_table WHERE test=123) FROM another_table Or is there a better ...
3
votes
3answers
847 views

MySQL DELETE FROM with subquery as condition

I am trying to do a query like this: DELETE FROM term_hierarchy AS th WHERE th.parent = 1015 AND th.tid IN ( SELECT DISTINCT(th1.tid) FROM term_hierarchy AS th1 INNER JOIN term_hierarchy ...

1 2 3 4 5 9