Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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, ...
3
votes
6answers
687 views

Need to create an expression in an outer join that only returns one row

I'm creating a really complex dynamic sql, it's got to return one row per user, but now I have to join against a one to many table. I do an outer join to make sure I get at least one row back (and can ...
2
votes
3answers
95 views

Reference of similar functions between Programming Languages

I'm wondering is there is a compiled knowledge base of similar functions or functionalities between several programming languages. The reason I'm asking this question is due to the fact that one is ...
1
vote
1answer
97 views

Rewrite Query without using correlated subqueries

Using Oracle 10gR2 on LINUX, I'm trying to tune the following query. I'm pretty sure that getting rid of the correlated subqueries and the possible use of some analytic functions may be the optimal ...
1
vote
2answers
490 views

oracle: tune correlated subqueries in select clause

On Oracle 10gR2, given the following query, it takes forever to run. This is because of all the correlated subqueries in the select clause. There has got to be a better way. I'm thinking that ...
1
vote
2answers
426 views

SQL Server uncorrelated subquery very slow

I have a simple, uncorrelated subquery that performs very poorly on SQL Server. I'm not very experienced at reading execution plans, but it looks like the inner query is being executed once for every ...
1
vote
2answers
1k views

Rewriting correlated subquery as JOIN?

UPDATE: Thanks to Sifu Bill's advice I have amended the SQL query. Now it returns the correct number of distinct assets (five). Is it possible to rewrite the following correlated subquery as a JOIN? ...
1
vote
5answers
2k views

SQL Server 2005 - Nested recursive query :(

I have a query that I need to execute that I do not know how to structure. I have a table called Employees. I have another table called Company. There is a third table called Files. As you can ...
1
vote
1answer
628 views

Linq Correlated query // Contains

Edited Solution using or rather than union ! It seems there is a problem with linq2sql w.r.t selecting a relation post a UNION msdn's social forums also indicate it as so Intent To get WCtegories ...
1
vote
2answers
1k views

How to avoid repeating a lengthy CORRELATED subquery?

Here is the code to help you understand my question: create table con ( content_id number); create table mat ( material_id number, content_id number, resolution number, file_location varchar2(50), ...
0
votes
2answers
59 views

Correlated Subquery help in MySQL

I need to find the last row for each ID in my table where a "Yes" was indicated and then search that same table for the next instance of that ID to ensure that the entry was a "No". Presently This ...
0
votes
2answers
173 views

Correlated SubQuery SQL to LINQ

select * from Table1 where TC in (select TC from Table2 where Application in ('AAA'))` help me in converting above query to LINQ.
0
votes
0answers
110 views

In MySql, LIMITed correlated sub-query applied to each row of an outer query?

OuterTable contains a datetime and a fruit type. OuterTable ( Day datetime, FruitType int ) OuterTable has 8000 rows. Fruits contains a per-minute count of how many fruits of each type ...
0
votes
2answers
611 views

correlated query /subquery VS join query

can we always convert a usual subquery/correlated subquery to join type query?
0
votes
5answers
947 views

MySQL: Rewrite MSSQL with correlated subquery in FROM clause?

We have a table that contains website page views, like: time | page_id ----------|----------------------------- 1256645862| pageA 1256645889| pageB 1256647199| pageA 1256647198| pageA ...
0
votes
2answers
90 views

How can I measure the quality of a fax file?

I'm trying to make a tool that can measure the quality of a fax file, comparing the received one with the one sent. I tried Phase_Correlation software, in order to see if the images are similar... but ...