2
votes
4answers
432 views
is there something faster than “having count” for large tables?
Here is my query:
select word_id, count(sentence_id)
from sentence_word
group by word_id
having count(sentence_id) > 100;
The table sentenceword contains 3 fields, wordid, …
1
vote
5answers
102 views
SQL Question: It’s possibile to have a WHERE clause after a HAVING clause?
So...
It is possibile to use a WHERE clause after a HAVING clause?
The first thing that comes to my mind is sub queries, but I'm not sure.
P.S. If the answer is affirmative, coul …
0
votes
1answer
31 views
How to get away with non-grouping field in HAVING clause
When executing in *ONLY_FULL_GROUP_BY* mode, I get the error "non-grouping field 'distance' is used in HAVING clause" when executing the following query. The query counts the amoun …
1
vote
6answers
105 views
SQL query need to get names where count(id) = 2
I have a table programparticipants, I am currently successfully querying the IDs where count(name) > 1. What I need now is to query the names that belong to those IDs where count(n …
0
votes
2answers
196 views
Subquery returning multiple columns
Hi,
I am writing a select subquery that returns a COUNT. However, I need to use a HAVING clause in the subquery and as a result need to specify that column in my subquery SELECT. …
1
vote
2answers
2k views
Hibernate Criteria API - HAVING clause work arounds
I've written a query using Hibernate Criteria API to grab a summation of a particular value, now I need to be able to restrict the result to rows where that sum is greater or equal …
1
vote
3answers
45 views
Group by ‘other’, where groups with small contribution are included in ‘other’ field - MySQL
I would like to GROUP BY an item in my table, which has an associated monetary value. This I can work out as a percentage, however there are often too many items in the list (too m …
1
vote
5answers
856 views
Complex join with nested group-by/having clause?
I ultimately need a list of "import" records that include "album"
records which only have one "song" each.
This is what I'm using now:
select i.id, i.created_at
from imports i
…
0
votes
4answers
292 views
How to use an aliased column in a MySQL WHERE clause?
I have a MySQL query like this:
SELECT *, SUM(...some SQL removed for brevety) AS Occurrences FROM some_table AS q
WHERE criterion="value" GROUP BY q.P_id ORDER BY Occurrences DES …
0
votes
2answers
317 views
how to translate the SQL code “having” condition into LinqToSQL or LinqToEntites?
Could you tell me how to translate the following SQL code to Linq To SQL or Linq To Entites?
The correst SQL code is:
select CollectId,url,userid,pubtime
from Collect group …
