Correlated sub-query is a sub-query (a query nested inside another query) that uses values from the outer query.
1
vote
2answers
58 views
Is there a workaround to the Oracle Correlated Subquery Nesting Limit?
I have a situation where I'm trying to use a correlated subquery but am running into the nesting limit in Oracle. I might be missing another feature that Oracle has, so I thought I'd post this ...
0
votes
1answer
20 views
MySQL subquery within LIKE CONCAT
I'm trying to create a query that checks an inserted value against a field. I'm trying to accomplish this using a sub-query, but got stuck. What I'm trying to accomplish:
(message1) User1 says: Hello ...
1
vote
2answers
18 views
How to reference and reuse a corelated sub query?
Imagine a trade table and a cds_coupon table joined on trade id; the coupon table having settlement date and settlement amount as well. The required query is to get the amount and the date of the next ...
1
vote
1answer
34 views
Convert a nested subquery into normal query
I have problem with following query where in which the nested query should be
converted to normal query:
select
count(*) as count,
TO_CHAR(RH.updated_datetime,'DD-MM-YYYY HH:MI:SS') as date,
...
3
votes
4answers
295 views
Can Someone Help me Optimize this mysql statement?
I have one table that I'm using to build groups with in my database. The table contains a list of group names and ids. I have another table that has users, and a third table showing the ...
2
votes
5answers
70 views
sql - multiple layers of correlated subqueries
I have table A, B and C
I want to return all entries in table A that do not exist in table B and of that list do not exist in table C.
select * from table_A as a
where not exists (select 1 from ...
4
votes
1answer
87 views
The column prefix '%s' does not match with a table name or alias name used in the query
i'm trying to run a query against a remote 2000 server; but the query that the local server is generating is incorrect, and causes the remote server to return the error:
The column prefix ...
3
votes
4answers
122 views
Select distinct users group by time range
I have a table with the following info
|date | user_id | week_beg | month_beg|
SQL to create table with test values:
CREATE TABLE uniques
(
date DATE,
user_id INT,
week_beg DATE,
...
1
vote
2answers
40 views
MySQL correlated subquery ordered by date&time
Afternoon All,
I'm a stackoverflow virgin so go easy on me please. I am having difficulty retrieving the information i need from a database and believe that a correlated subquery may be the answer ...
0
votes
2answers
35 views
Writing a correlated sub-query in my select query
I have a funky query that works fine with static data but I need my data to be dynamic. So the static data is like this
SELECT c.my_name, c.my_id, (SELECT count(d.friendship_id) FROM another_table d ...
1
vote
2answers
126 views
Oracle SQL correlated subquery to fetch exactly one row
In an Oracle SQL correlated subquery,
I require to have a condition on the subquery to fetch exactly one row(if there are more rows, it shouldn't fetch any rows).
And the below query works just ...
1
vote
1answer
143 views
SQL Server “cannot perform an aggregate function on an expression containing an aggregate or a subquery”, but Sybase can
This issue has been discussed before, but none of the answers address my specific problem because I am dealing with different where clauses in the inner and outer selects. This query executed just ...
1
vote
3answers
90 views
Update PostgreSQL table with values from self
I am attempting to update a multiple columns on a table with values from another row in the same table:
CREATE TEMP TABLE person (
pid INT
,name VARCHAR(40)
,dob DATE)
,younger_sibling_name ...
0
votes
2answers
45 views
how can i break this correlated sql->oracle statement up?
UPDATE t1
SET t1.language_id = (SELECT distinct(CASE WHEN NETWORK.nid = 11
THEN 10
ELSE 7
END)
...
0
votes
1answer
135 views
Select in select - Every derived table must have its own alias error
I'm trying to get from database information about orders grouped by date.
I have table sales_flat_order, where I have it's id, order creation date, total_paid for order, and order item count. And I ...
1
vote
1answer
67 views
What should be the query in MS Access 2007
There is one table with coulmns :
id,bookid,name,dateofentry,status.
Need result where bookid and last dateofentry for corresponding book and status of book i.e R only
(R- Return, and NR- Not ...
0
votes
2answers
120 views
Using SQL to compare counts of identifiers from two tables
I'm trying to construct a query that compares two tables with identical structure
Table 1:
ID | Data
Table 2:
ID | Data
ID is a nonunique key (Data is repeatable but ID|Data combos are unique). I ...
1
vote
1answer
61 views
Improved way for multi-table SQL (MySQL) query?
Hoping you can help. I have three tables and would like to create a conditional query to make a subset based on a row's presence in one table then excluding the row from the results, then query a ...
0
votes
1answer
42 views
Trouble Avoiding Correlated Subquery
I'm trying to avoid a correlated subquery in my SQL, but I can't seem to figure out how to do that. Here's my current PostgreSQL statement:
INSERT INTO book_collection (publisher, p_key, ...
0
votes
2answers
137 views
Replacing correlated sub-query with JOIN(s) only?
This question is somewhat a follow up to my previous one. It's also based on SQLZOO's "SELECT within SELECT tutorial". This time it's about Task# 8.
First, an acceptable solution:
SELECT w1.name, ...
1
vote
1answer
92 views
MYSql - Using correlated subquery in Zend Db
I'm trying to construct a working MySql query with a correlated subquery in zend_db_select (ZF 1.12) to use that in Zend_Paginator_Adapter. The working query is as follows:
SELECT f.*, (SELECT ...
6
votes
3answers
122 views
Is it a slow query? Can it be improved?
I was going through SQLZOO "SELECT within SELECT tutorial" and here's one of the queries that did the job (task 7)
world(name, continent, area, population, gdp)
SELECT w1.name, w1.continent, ...
3
votes
3answers
73 views
Subqueries and the possibility to reference outside with correlated subqueries
I am refreshing my SQL.
I was reading about subqueries and the possibility to reference outside with correlated subqueries.
Example:
SELECT *
FROM ORDERS O
WHERE 'ROAD BIKE' =
(SELECT ...
3
votes
1answer
224 views
Can one use a correlated sub-query in Sybase ASE that has “TOP 1 column”?
I tried to use a proposed query on Sybase ASE 12, and it complained about syntax error.
SELECT
item,
( SELECT TOP 1 tags.tag
FROM #tags tags
LEFT JOIN t o
ON ...
0
votes
1answer
174 views
query columns from many tables using dynamic SQL or Correlated Subquery on SQL Server INFORMATION_SCHEMA
I want to list all the Manufacturers identified in an SQL Server database.
There are many tables with manufacturer names in them, but they are not always in a nicely named column. However, column ...
4
votes
1answer
253 views
Translate TOP 1 correlated subquery from SQL Server to Oracle
How do I perform a correlated subquery in Oracle that returns the first matching row based on an ORDER BY clause? I'm trying to translate a query from SQL Server that does this.
For the record, I ...
1
vote
1answer
48 views
More Efficient Version of this Correlated Subquery
I've got 3 different tables and I need to pull data once from 2 of them, and twice from the third. The tables are jobs, customers, and customers_attributes. I'm trying to pull data for a specific job, ...
0
votes
2answers
88 views
Using correlated subquery and MAX
I have two tables:
InventoryPart:
PartNumber, PartDescription, CategoryID, EOQ, StockPrice,
ReorderLevel, StockLevel, StockOnOrder, Weight
and
CustOrderLine
OrderID, PartNumber, ...
0
votes
3answers
710 views
Find All Rows With Null Value(s) in Any Column
I'm trying to create a query that will return all the rows that have a null value across all but 1 column. Some rows will have more than one null entry somewhere. There is one column I will want to ...
0
votes
2answers
282 views
Oracle SQL Correlated Subquery (in WHERE statement) having no results
Hi and thanks for reading,
I am trying to run the following SQL query with correlated subquery and it is bringing back no results. I am using the subquery to only bring back results that have the ...
1
vote
1answer
253 views
SQL Server Performance tuning of While loop with correlated sub query
In my project I came across a challenge with below T-SQL code.
step1 populates the UserModules table with parent modules and its subscribed users
step2 checks for child modules associated to ...
0
votes
1answer
444 views
JPA Criteria select all instances with max values in their groups
Is there a way to write with JPA2 CriteriaBuilder the equivalent of the following query?
select * from season s1
where end = (
select max(end)
from season s2
where ...
0
votes
0answers
79 views
Wrong results with mysql subquery (omit where)
I got query like this:
SELECT *
FROM
(
SELECT @rownum:=@rownum+people_counter AS row_number,
d.salary_base AS value,
location,
year_id
FROM data_jobs d, (SELECT ...
2
votes
5answers
169 views
mySQL correlated Subquery
trying to write a mysql query and having a lot of difficult with this one.
I have two tables( Item: info about items, and itemReview: reviews for the items )
What I would like to do is select all ...
0
votes
0answers
53 views
Without using a View, can I change correlated subqueries of a table to correlated subqueries of a subquery of that table?
I have a few queries (a genericized version posted below) that I want to change the FROM table that correlates against different versions of itself (in the genericized version, that would be ...
0
votes
1answer
108 views
SQL for MAX for each Group
I have 4 tables. Im trying to get the max value for each car brand. There are 10 BRANDS. Im trying to get which car is the most expensive for each brand.
The first thing i did was group all the ...
1
vote
2answers
153 views
Multi Table NOT EQUAL in Access Query
I have two tables. VEHICLES and OWNERSHIP. I am trying to make a query that will give me a list of all VEHICLES NOT in the OWNERSHIP table. I basically need a report of my available VEHICLE inventory. ...
0
votes
1answer
99 views
correlated sub query
Trying to show customers' vehicles who had an invoice raised in the past 30 days.
I tried this:
select C.*, V.*
from CAR_OWNERSHIP O
join VEHICLE V on v.VEH_ID = O.VEH_ID
join CUSTOMER C on ...
1
vote
2answers
415 views
Correlated Sub queries using MAX and GROUP BY
I have a database with the tables: VEHICLES (a Blue Honda Civic costing $30k), BRAND (Honda) AND MODEL (Civic).
I am trying to create a correlated sub query which will give me the VEH_IDs for the ...
0
votes
2answers
162 views
MySQL selecting related data for multiple rows in one query
id title
--------------------------
1 mysql websites
2 html tips
3 mysql tricks
4 javascript tutorial
5 mysql queries
6 javascript framework
I want to select related ...
0
votes
1answer
70 views
Subquery select using UNION
CREATE TABLE newsarticles
(katernenID int, Buitenland int, Economie int, Sport int, Cultuur int, Wetenschap int, Media int, userID int);
INSERT INTO newsarticles
(katernenID, Buitenland, ...
0
votes
4answers
265 views
how do I get the oldest date without using a correlated subquery sql
The following code list all the invoices, and I just want the oldest invoice from a vendor:
SELECT DISTINCT vendor_name, i.invoice_number AS OLDEST_INVOICE,
MIN(i.invoice_date), i.invoice_total
...
0
votes
1answer
20 views
joins on multiple related tables
I have 3 table customer (customerid,name), customerbooking(bookingid,customerid), transact(transacted,bookingid,typeoftransaction)
I want to fetch the name of the ‘customer name’ who has the maximum ...
-2
votes
1answer
168 views
MySQL: dependent subquery select type for uncorrelated subquery
There are DDL statements:
CREATE TABLE t1(
c1 INT NOT NULL
);
CREATE TABLE t2(
c2 INT NOT NULL
);
My query:
SELECT c1 FROM t1 WHERE c1 NOT IN (SELECT c2 from t2)
EXPLAIN output:
id select_type ...
4
votes
2answers
72 views
SQL Delete clears the table instead of erroring
I have a piece of SQL which (you would think) wouldn't compile, but which instead deletes all rows from the target table.
Consider this setup:
create table TableA (ColumnA varchar(200));
create ...
0
votes
1answer
173 views
Oracle correlated subquery issue
I have the following schema
Invoices
=================
invoice_number
account_id
invoice_amount
invoice_date
status ("Paid","Not Paid")
I'm trying to write a query to get all invoices with the ...
2
votes
2answers
233 views
How to pass table alias to subsubquery in SQL?
I've been struggling with SQL for a while now. I have to build a query to return a second highest id from a table. Sounds simple, especially if you've found that link.
But I have a bit more ...
0
votes
2answers
287 views
T-SQL Subquery Return Column Results
I need to return information from a column that is specified in a subquery.
In the subquery below, I am trying to return info from the PaymentDate column.
When I try to Select Order.PaymentDate in my ...
0
votes
3answers
105 views
Listing the average from the top 5 scores of each player
After reading several other answers of similar problems, I still can't wrap my head to achieve the following:
Having a list of player scores, I would like to get the top n scores of each player (the ...
0
votes
2answers
393 views
Looking for an alternative to a T-SQL Sub-Query
Account
=======
int AccountId PK
Order
=====
int OrderId PK
int AccountId FK
DateTime Date
int Status
For each account I want to know the most recent order that has a status of 1 (Success) ...



