Tagged Questions

"subquery" is vague SQL terminology, used to describe when there's either more than one `SELECT` statement in a query, or when used in Data Manipulation Language (DML) statements (IE: DELETE, UPDATE, INSERT, MERGE). The subquery's SELECT statement is always found within brackets/parenthesis.

learn more… | top users | synonyms (1)

50
votes
9answers
38k views

Mysql error 1093 - Can't specify target table for update in FROM clause

I have a table *story_category* in my database with corrupt entries. The next query returns the corrupt entries. SELECT * FROM story_category WHERE category_id NOT IN ( SELECT DISTINCT category.id ...
39
votes
1answer
1k views

How can I recreate this complex SQL Query using NHibernate QueryOver?

Imagine the following (simplified) database layout: We have many "holiday" records that relate to going to a particular Accommodation on a certain date etc. I would like to pull from the database ...
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 ...
9
votes
1answer
95 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
636 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
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 ...
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
1answer
167 views

Am I crazy: PostgreSQL IN operator with nested query returning unexpected results

The following query returns 2036 rows: SELECT "FooUID" from "Foo" f LEFT JOIN "Bar" b ON f."BarUID" = b."BarUID" WHERE f."BarUID" IS NOT NULL AND b."BarUID" IS NULL But the following statement only ...
6
votes
1answer
766 views

Doctrine 2 subquery

I want to implement a subquery using the query builder but I'm not understanding the syntax. I'm dealing with a locations table that has entries that can be cities, states or zip codes depending on ...
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 ...
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
1answer
145 views

Return pre-UPDATE column values in PostgreSQL without using triggers, functions or other “magic”

I have a related question, but this is another part of MY puzzle. I would like to get the OLD VALUE of a Column from a Row that was UPDATEd... WITHOUT using Triggers (nor Stored Procedures, nor any ...
5
votes
3answers
319 views

subquery or leftjoin with group by which one is faster?

i have to show running total with the total column in my application ... so i have used the following queries for finding the running total... and i find that both are working as per my need . in one ...
5
votes
2answers
196 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
112 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
3answers
194 views

LINQ and how to return a list of a specific type

I have 2 tables (Document and DocumentClass) that have the following columns: DocumentClass: DocClassID, Name, ParentID Document: DocID, Name, DocClassID The DocumentClass table contains parent ...
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
701 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
479 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
6answers
4k views

MySQL - how to use index in WHERE x IN (<subquery>)

I'm using this query to get all employees of {clients with name starting with lowercase "a"}: SELECT * FROM employees WHERE client_id IN (SELECT id FROM clients WHERE name LIKE 'a%') Column ...
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
180 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
223 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
252 views

Fetching Orders and Orderlines Count with subqueries

I am in process to port an old App to Nhibernate. The old application uses ORACLE packages extensively and I want to get rid of that. I've started to map few tables and things seem to work very well. ...
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
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
1answer
254 views

Why does this Oracle 10g SQL run slow only when I query a subquery with a where clause?

I can't paste in the entire SQL for various reasons, so consider this example: select * from ( select nvl(get_quantity(1), 10) available_qty from dual ) where available_qty > 30 ; ...
4
votes
4answers
540 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
459 views

MySQL subquery to refer to field in parent query

I am building a query that performs some filtering on rating data. Suppose I have a simple table called ratings like the following, storing data from an online rating tool: ...
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
202 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
1answer
497 views

Subqueries and MySQL Cache for 18M+ row table

As this is my first post it seems I can only post 1 link so I have listed the sites I'm referring to at the bottom. In a nutshell my goal is to make the database return the results faster, I have ...
4
votes
1answer
1k views

How do I concatenate strings from a subquery into a single row in mysql?

I have three tables: table "package" ----------------------------------------------------- package_id int(10) primary key, auto-increment package_name varchar(255) price ...
4
votes
4answers
388 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
1answer
990 views

Zend_Db subquery

I've been trying to construct a sql query with ZendFW, but I cant seem to get it to function like I want to (or function at all). This is the query that works that I'm trying to build with zend_db ...
4
votes
1answer
2k views

MySQL Subquery LIMIT

As the title says, I wanted a workaround for this... SELECT comments.comment_id, comments.content_id, comments.user_id, comments.`comment`, comments.comment_time, NULL FROM comments ...
4
votes
3answers
693 views

Linq guru - filtering related entities

My table structure is as follows: Person 1-M PesonAddress Person 1-M PesonPhone Person 1-M PesonEmail Person 1-M Contract Contract M-M Program Contract M-1 Organization At the end of this query I ...
4
votes
5answers
327 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
1answer
49 views

Creating subquery using IN

I have a question on making a good subquery for this problem Let's say we have a table users, and links. users +++++++++ id name 1 name1 2 name2 3 name3 +++++++++ links +++++++++ id link 1 ...
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
4answers
2k views

How to specify the parent query field from within a subquery in mySQL?

Is there a way to specify the parent query field from within a subquery in mySQL? For Example: I have written a basic Bulletin Board type program in PHP. In the database each post contains: id(PK) ...

1 2 3 4 5 20