Tagged Questions
The correlated-subquery tag has no wiki summary.
4
votes
3answers
146 views
Alternatives to a recursive CTE inside an 'exists' correlated subquery?
I have a situation where I need to be able to see if a given person is within a user/manager hierarchy.
I need to be able to do this for a set of users against a set of rules (don't worry about this, ...
4
votes
1answer
441 views
NHibernate QueryOver select entity and aggregates
What I want to do is display a simple grid of data which contains the entity data, and the aggregate data of its children. For example lets use a Order and line items. I want to display the order ...
4
votes
3answers
61 views
SQL Query - Distinct results
I have the following two tables:
People [*ID*, Name]
Pet [*PetID*, OwnerID, Species, Name]
(OwnerID is a foreign key of ID)
I would like the database to list each person and how many different ...
4
votes
2answers
354 views
Can I use table-valued function as query source in NHibernate?
I have one question to ask you, dear community, as you may have guessed. So.
I want NHibernate to filter the results of a query basing on the evaluation of table-valued sql function.
Possible SQL ...
4
votes
9answers
2k views
DELETE SQL with correlated subquery for table with 42 million rows?
I have a table cats with 42,795,120 rows.
Apparently this is a lot of rows. So when I do:
/* owner_cats is a many-to-many join table */
DELETE FROM cats
WHERE cats.id_cat IN (
SELECT ...
3
votes
1answer
144 views
Group by the results of a correlated sub-query in SQL 2005
This is my first time posting on Stack Overflow but have already found it to be an invaluable resource.
My question has to do with correlated subqueries in the group by of a SQL Statement, which I ...
2
votes
2answers
42 views
Make a report from 3 different tables using MAX and COUNT?
I have a database with patients, doctors, cabinets and visits.
Patients (id_pac, FirstName, LastName)
Doctors (id_med, FirstName, LastName, Speciality)
Cabinets (id_cab, Name)
Vizits (id_viz, ...
2
votes
1answer
61 views
Using outer query result in a subquery in postgresql
I have two tables points and contacts and I'm trying to get the average points.score per contact grouped on a monthly basis. Note that points and contacts aren't related, I just want the sum of ...
2
votes
4answers
52 views
Optimization of multiple aggregations in SELECT
I read in a Microsoft T-SQL Performance Tuning whitepaper that correlated sub-queries can be costly in terms of performance on a large table:
...Compare this to the first
solution that would ...
2
votes
1answer
87 views
Oracle correlated UPDATE
I'm having difficulty with Oracle 10g syntax for a correlated UPDATE. I am processing this code in a PL/SQL procedure.
I would approach the problem in SQL Server as so:
UPDATE table_a a
SET ...
2
votes
1answer
416 views
SQL Server, Multiple Conditions in correlated subquery
I tried to use compound conditions in the correlated subquery, but it didn't return the result expected. Can you look into the example below to see why the first query doesn't work out but the second ...
2
votes
1answer
265 views
Where clause in left join using correlated query?
Here's the query:
SELECT c.Name As CompanyName, j.ID as JobID, j.Title as JobTitle,
ja.ApplicationDate, DATEDIFF(MONTH,ja.ApplicationDate, GETDATE()) AS MonthsAgo,
jsc.Name As Recruiter, js.Name As ...
2
votes
5answers
505 views
SELECT INTO inside a subquery
Environment : SQL Server 2005
I have this type of request
SELECT *
FROM user
WHERE EXISTS(
SELECT *
FROM user_access
WHERE user_access.user_id = user.user_id
AND user_access.access IN ...
2
votes
2answers
145 views
joins versus correlated exists subqueries
In Derby and/or MySQL, I am wondering about the performance of:
select c0.documentid from contentblob as c0 where c0.documentid > ?
and c0.blobid = ?
and exists (select * from contentblob ...
2
votes
3answers
419 views
MySQL multiple dependent subqueries, painfully slow
I have a working query that retrieves the data that I need, but unfortunately it is painfully slow (runs over 3 minutes). I have indexes in place, but I think the problem is the multiple dependent ...
2
votes
5answers
810 views
Oracle - correlated subquery problems
I have this query:
select acc_num
from (select distinct ac_outer.acc_num, ac_outer.owner
from ac_tab ac_outer
where (ac_outer.owner = '1234567')
and ac_outer.owner = ...
2
votes
2answers
195 views
MySql scoping problem with correlated subqueries
I'm having this Mysql query, It works:
SELECT
nom
,prenom
,(SELECT GROUP_CONCAT(category_en) FROM
(SELECT DISTINCT category_en FROM categories c WHERE id IN
...
1
vote
2answers
46 views
In GROUP BY, can we reference a parent query's column?
If yes, the first query below should be correct, but shows error ORA-00979: not a GROUP BY expression.
If not, the third query should also throw error...
SELECT POSSIBLE.ENAME, POSSIBLE.DEPTNO, ...
1
vote
1answer
36 views
Are these two queries same/give same output?
Indepenedent subquery
SELECT Cust_Name
FROM Customer_Details
WHERE Cust_ID
IN
(SELECT Cust_ID
FROM Customer_Loan)
AND Cust_ID IN
...
1
vote
1answer
35 views
How to update based on anoter row in the same table?
I want to create a query that updates an int based on the int of the row with an id that is 1 higher.
I have tried this query, but it says that i can't label the table in an update statement. But how ...
1
vote
2answers
70 views
How to reduce many similar correlated subqueries?
This is part of a larger statement, but I'm wondering if CTE or another method would help make this more efficient or cleaner. I could write it as a table-valued function and include it in my from ...
1
vote
3answers
194 views
SqlAlchemy closure in subquery
I have searched many topics and didn't find the answer, or question was too complex. So okay. This is my first question.
Here is the SQL
SELECT parent.*,
(
SELECT COUNT(*)
FROM child
...
1
vote
2answers
78 views
mysql correlated subquery count to return only if count >0
I simply want to get results if Count>0 from the following mysql query.
The following gives results even if Count=0.
SELECT id, Name,
(
SELECT COUNT(*)
FROM
(
%actual count query here%
) A WHERE ...
1
vote
1answer
75 views
Correlated mysql subqueries
HI i want to get the value of the variable from the main query inside the sub query
SELECT t1.,sq.,count(distinct(t4.col1)) as count,
FROM t1 LEFT OUTER JOIN(
SELECT ...
1
vote
1answer
173 views
MySQL LIMIT in a Correllated Subquery
I have a correlated subquery that will return a list of quantities, but I need the highest quantity, and only the highest. So I tried to introduce an order by and a LIMIT of 1 to achieve this, but ...
1
vote
2answers
406 views
subquery factoring questions
Please explain.
a) "subquery factoring" is used to replace a non-correlated subquery. What about correlated subquery? Is there any way to move a correlated sub-query to 'WITH' clause section?
b) are ...
1
vote
1answer
668 views
Is it possible to create a correlated subquery in LINQ?
I'd like to create a LINQ query that returns the sum of all quantities for a given productnumber for a parent account and all it's child accounts.
I have a table of products by account number in ...
0
votes
5answers
50 views
Oracle SQL dynamic Query with ANDs and ORs more performant
Is there a better query to solve this problem ?
1 Car has many Types.
I want something like this: (ps this is incorrect, i know)
select * from car join type on car.id = type.id_car
where type = ...
0
votes
4answers
62 views
Is GROUP BY needed in the following correlated subquery?
Given scenario:
table fd
(cust_id, fd_id) primary-key and amount
table loan
(cust_id, l_id) primary-key and amount
To list all Customers who have a fixed deposit of amount less than the sum of ...
0
votes
1answer
55 views
how to remove correlated subquery
I'd like to rewrite this query so as not to use the correlated subquery -- but do achieve the same output from the query.
CREATE TABLE "TABLE_1"
( "SITE_ID" NUMBER(*,0),
"USER_ID" NUMBER(*,0),
...
0
votes
2answers
34 views
Select parent and child from the same table
I have a emp table,
CREATE TABLE [dbo].[Emp](
[EmpId] [int] NULL,
[EmpName] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ManagerId] [int] NULL
) ON [PRIMARY]
Now, ...
0
votes
1answer
20 views
In LINQ to SQL, how to perform a subquery with max?
var ItemScores = (from a in response.ItemScores where a.LastUpdated ==
(from d in response.ItemScores where a.Word_Id == d.Word_Id select a.LastUpdated).Max() select a);
The above query is supposed ...
0
votes
0answers
94 views
Correlated subqueries in NHibernate
I am just starting with NHibernate and I am struggling with trying to convert some SQL with subqueries into either HQL, Criteria or QueryOver syntax. Any advice or tips would be most useful.What I am ...
0
votes
2answers
46 views
Selecting the one maximum row from each group
in example Xaprb
http://www.xaprb.com/blog/2006/12/07/how-to-select-the-firstleastmax-row-per-group-in-sql/
select maximum for each group
+--------+------------+-------+
| type | variety | ...
0
votes
4answers
70 views
SQL Sum() with correlated subquery
I have two tables: fund and items. Items has a field called fundID that is related to the ID of the fund table. Items also has a price field.
Here's a simplified example of the two tables:
FUND
ID ...
0
votes
1answer
107 views
MySQL correlated subquery SUM() ORDER BY
Is there anyway to optimize the following query:
SELECT
t1.id,
(SELECT SUM(col1) FROM table_name_two t2 WHERE t2.name LIKE CONCAT('%',t1.name)) AS col1_count
FROM
table_name_one t1
ORDER BY
...
0
votes
1answer
34 views
Correlated join with outer fields as parameters
Good day,
I need a way to join a table with a function's results. I'm not sure if it's possible and somehow I don't think it's a good idea. Let me try and explain the situation.
There is a table ...
0
votes
1answer
203 views
Oracle SQL - multi-level correlated subquery does not work
I'm trying to run an UPDATE statement with 2 levels of subqueries that refer to the updated table, but getting an error.
Please consider the following code. It's giving me "c.end_date invalid ...
0
votes
2answers
100 views
Subquery with multiple select statements
to check the subquery having multiple select statement inside 'not in' condition
Eg.
select id from tbl where
id not in (select id from table1) and
id not in (select id from table2) and
id not in ...
0
votes
2answers
148 views
MySQL: getting a row count based on a correlated subquery of a subquery
I apologize if this has been answered else where, I've been pulling my hair out searching but haven't found anything yet.
I have the following tables:
Table: STATES
+------------+---------+
| ...
0
votes
1answer
448 views
MySql variable in “where” clause problem
I have a query with subquery in it. the subquery returns the value, that i need to return in php and that also is used in "where" clause. i trying to figure out how can i not exequte th subquery two ...
0
votes
4answers
107 views
How can I update a record using a correlated subquery?
I have a function that accepts one parameter and returns a table/resultset. I want to set a field in a table to the first result of that recordset, passing in one of the table's other fields as the ...
0
votes
1answer
167 views
How to optimize huge query with repeated subqueries
I have the following huge query that contains repeated subqueries , It looks really inefficient to me. How can i optimize it ?
SELECT T2.date1, T2.date2, T2.period, T1.market, T1.ticker, 0 AS ...
0
votes
1answer
742 views
NHibernate correlated subquery using ICriteria
I've been doing some work evaluating NHibernate for an upcoming project and am working through some use cases to see how it performs. I haven't yet been able to find a way to express the following ...
0
votes
3answers
129 views
How do I use a correlated sub query for a new column in my view?
I am trying to write a view that has 3 columns: Planet, Moon, and Largest.
The view is meant to show planets, their moons, and a Yes or No column indicating whether or not it is the largest moon for ...
0
votes
1answer
531 views
How to create a correlated update subquery in MS-Access?
I'm in the process of normalizing a few tables and I've added a surrogate primary key to a table called Exams which holds exam titles.
Previously, the child tables would just use the entire name of ...
0
votes
2answers
497 views
Multipart identifer could not be bound, correlated subquery
This is a contrived example using SQL Server 2008.
I'm essentially storing a list of ids in an xml column in a table:
temp (bigint id, xml ids)
I want to join the table itself to the xml nodes.
So ...
0
votes
2answers
95 views
The “first past the post election” query problem
This problem may seem like school work, but it isn't. At best it is self-imposed school work. I encourage any teachers to take is as an example if they wish.
"First past the post" elections are ...
0
votes
2answers
235 views
Subselect a Summed col in Oracle
this is an attempted fix to a crystal reports use of 2 sub reports!
I have a query that joins 3 tables, and I wanted to use a pair of sub selects that bring in the same new table.
Here is the first ...
0
votes
2answers
42 views
MYSQL Query TAKING user's participation place with quantity of all other participants
I am making a website where users add the place where they have visited.
There is 4 main tables
users (user_id,name )
places (place_id,type_id,place_name, city_id)
user_place (user_id,place_id, ...