Tagged Questions
The sub-query tag has no wiki summary.
2
votes
3answers
241 views
Very Slow MYSQL Sub Query
Guys, im more of a MSSQL guy but im working on some MYSQL right now.
Iv written a simple query, with a subquery and I cant understand for the life of me why its so slow.
This query:
SELECT ...
2
votes
2answers
139 views
MySQL Group by a field based on the maximum value of another field IN THE GROUP (not in the table)
Consider the following table:
un_id avl_id avl_date avl_status
1738 6377398 2011-03-10 unavailable
1738 6377399 2011-03-11 unavailable
1738 6377400 2011-03-12 unavailable
1738 ...
1
vote
0answers
35 views
Elastic Search and “sub queries”
Can you perform a subquery in Elastic Search?
I am finding a list of documents (usually about 5-20 documents). For each of the documents I'd like to perform a search to come up with some custom ...
1
vote
3answers
188 views
Linq Sub Query (SELECT in SELECT)
I have got a native join sub query problem in MySQL Entity. SQL code is;
DB structure is;
tbl_urunler_kod
id, kod
- 1, pkod1
- 2, pkod2
- 3, pkod3
tbl_urunler
id, kod_id
- 1, 1
- 2, 2
- 3, 3
...
1
vote
1answer
69 views
MySQL - What's wrong with the query?
I am trying to query a database to find the following.
If a customer searches for a hotel in a city between dates A and B, find and return the hotels in which rooms are free between the two dates.
...
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
3answers
182 views
What do you put in a subquery's Select part when it's preceded by Exists?
What do you put in a subquery's Select part when it's preceded by Exists?
Select *
From some_table
Where Exists (Select 1
From some_other_table
Where ...
0
votes
2answers
44 views
Multiple aggregates from same sub query in SQL Server
Is there a better way of doing this without having the repeated sub queries that just select a different field?
SELECT Name, er.DateEventStarts, e.LocationName,
(SELECT count(*) FROM Ticket t WHERE ...
0
votes
3answers
79 views
mysql sub queries performance
my SQL(with sub-queries) take so long(nearly 24hour). Is using sub-queries is not good for performance?
My table as below
mysql> show create table eventnew;
CREATE TABLE `eventnew` (
`id` ...
0
votes
1answer
184 views
subquery within alter table in db2
I want to run subquery within ALTER TABLE command in DB2.
ALTER TABLE user ALTER column userId SET GENERATED ALWAYS AS IDENTITY
(start with 2646)
...
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
6answers
1k views
How to reuse a sub-query result in a SELECT more than once
Example:
SELECT
(SELECT SUM(...) FROM ...) as turnover,
(SELECT SUM(...) FROM ...) as cost,
turnover - cost as profit
Sure this is invalid (at least in Postgres) but how to achieve the ...