The having-clause tag has no wiki summary.
10
votes
3answers
672 views
WHERE vs HAVING
Why do you need to place columns you create yourself (for example select 1 as "number") after HAVING and not WHERE in MySQL?
And are there any downsides instead of doing WHERE 1 (writing the whole ...
5
votes
2answers
187 views
What's the difference between HAVING and WHERE in MySQL Query?
I have a view (viewX) based on joins of some tables:
When I use WHERE, the query is delayed, processor usage goes to 50% and finally I need to close mysqld.exe service and restart to try to solve the ...
4
votes
1answer
173 views
LINQ TO SQL GROUP BY HAVING generated only as subquery
according to all samples, the SQL conversion to LINQ for HAVING clause as in this example:
SELECT NAME
FROM TABLES
GROUP BY NAME
HAVING COUNT(*) > 1
is: (vb.net)
from t in tables
group t by ...
3
votes
2answers
102 views
SQL Select Count(person_id) > 3 From
Can someone convert this english to SQL I have tried several things but no luck.
SELECT CASE WHEN COUNT(person_id) > 3 THEN person_id end FROM table
I am trying to only get the person_id(s) that ...
2
votes
3answers
53 views
Error with ORDER BY used with HAVING Clause
I am trying to use some basic SQL functions. I need to get an average of some data and order it in descending order. The error I get is "group function is not allowed"
Table:
STUDENTS
-----------
ID
...
2
votes
4answers
260 views
Difference between WHERE and HAVING in SQL [closed]
Possible Duplicate:
SQL: What's the difference between HAVING and WHERE?
I have seen various discussions on WHERE and HAVING. I still have a question: is HAVING used only when ...
2
votes
4answers
321 views
Is there a “NOT HAVING” syntax like “WHERE XXX NOT IN”?
I have a few queries get the ID numbers of rows that will be deleted in the future.
The row numbers are put into a string and placed in the query below (where you see "2").
I want the results to ...
2
votes
1answer
413 views
Django: How do I explicitly make a query with a HAVING clause?
I need to execute some SQL that looks like this:
select approve_firm_id,approve_dt,approve_result
from main_approve
group by approve_firm_id
having MAX(approve_dt) and approve_result=0;
it runs ...
2
votes
2answers
167 views
Querying on count value having ()
I'm having difficulty with a query which displays records according to their fill rate.
For instance, a vacancy can have no bookings or some bookings. If a vacancy has bookings, they can be in the ...
2
votes
4answers
596 views
use mysql SUM() in a WHERE clause
suppose I have this table
id | cash
1 200
2 301
3 101
4 700
and I want to return the first row in which the sum of all the previous cash is greater than a certain value:
So for ...
1
vote
1answer
96 views
HOW to use HAVING COUNT(*) with hibernate
I need to create a query and I need COUNT(*) and HAVING COUNT(*) = x.
I'm using a work around that uses the CustomProjection class, that I downloaded somewhere.
This is the SQL that I try to ...
1
vote
2answers
103 views
difference between having and where clause in SQL
SELECT column_name, aggregate_function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name
HAVING aggregate_function(column_name) operator value
What is the ...
1
vote
3answers
191 views
Simple query with HAVING operator
I have a table of Employees which consists of two columns : Employee and DepartmentId as follows
|Employee | DepartmentId
-------------------------
| e1 | 1
| e2 | 1
| e3 ...
1
vote
4answers
155 views
SQL Select - adding field to Select is changing the results
I'm stumped by this SQL problem that I suspect will be easy pickings for someone out there.
I have a table that contains rows representing several daily lists of ranked items. The relevent fields ...
0
votes
2answers
13 views
Selecting all users with minimum one order or more with mySQL
SELECT users.id, COUNT(?) FROM orders
INNER JOIN users ON (orders.user_id = users.id)
WHERE ??
How can i output:
UserID: 123 has made 22 orders
UserID: 124 has made 2 orders
and so on?
I would ...
0
votes
2answers
28 views
How to count data where sum is greater than x
I am very new to SQL and am using SQLite 3 to run basket analysis on sales data.
The relevant columns are the product ID, a unique transaction ID (which identifies the basket) and the product ...
0
votes
1answer
55 views
doctrine: HAVING clause in DQL query
I am working on a simple forum in symfony2 and have the following DQL query to get the last posts in each forum:
SELECT p, f.id FROM MyBundle:Post p
JOIN p.forum f
GROUP BY p.forum
HAVING ...
0
votes
1answer
86 views
MySQL HAVING function
I have an SQL command that have the following line in it,
HAVING
DATE_FORMAT(NOW(), '%Y') - DATE_FORMAT(`candidates`.`DOB`, '%Y')
- (DATE_FORMAT(NOW(), '00-%m-%d')
< ...
0
votes
4answers
106 views
SQL get rows matching ALL conditions
I would like to retrieve all rows matching a set of conditions on the same column. But I would like the rows only if ALL the conditions are good, and no row if only one condition fails.
For example, ...
0
votes
1answer
44 views
What is wrong with this simple SQL Server 2008 R2 query? Yields “expression of non-boolean type …” error
I am trying to choose the single row from table Responses that meets a couple of conditions AND has the most recent date in the update_datetime field. (I actually want ALL the fields from the ...
0
votes
1answer
94 views
Very strange PDO->bindparam behaviour php
The query below is running well and runs quite fast for what it does. However it is displaying some very strange behaviour as outlined below.
However in PHP it seems to decide by itself which ids it ...
0
votes
2answers
65 views
delete return rows fron select statment using userdefined variable (AS) in where condition
I have this mysql query
select
id,
FROM_UNIXTIME(`placedate`) as placedate_mysqldate
from
orders HAVING placedate_mysqldate < '2011-08-01 00:00:00'
so the query returns about 1000 ...
0
votes
3answers
59 views
MySQL limit rows per group weird results
Ok, so I wanted to get the latest 4 dates for each symbolid. I adapted the code here as follows:
set @num := 0, @symbolid := '';
select symbolid, date,
@num := if(@symbolid = symbolid, @num + 1, 1) ...
0
votes
1answer
77 views
How do I join one table onto another where userid = userid but only for that date?
I'm looking to take the total time a user worked on each batch at his workstation, the total estimated work that was completed, the amount the user was paid, and how many failures the user has had for ...
0
votes
1answer
109 views
PostgreSQL: having clause not working as expected
I have a user DE9013 with two positive ratings in an SQL-table:
# select * from pref_rep where id='DE9013';
id | author | good | fair | nice | about | last_rated | author_ip
...
0
votes
1answer
244 views
What is the correct way to do a HAVING in a MongoDB GROUP BY?
For what would be this query in SQL (to find duplicates):
SELECT userId, name FROM col GROUP BY userId, name HAVING COUNT(*)>1
I performed this simple query in MongoDB:
res = ...
0
votes
1answer
471 views
ColdFusion MsSQL HAVING SUM() with NULL value
I tested this with CF 9 and MsSQL 2005
CREATE TABLE HAVING_SUM
(
A_VARCHAR VARCHAR(5),
B_INT INT
)
INSERT INTO HAVING_SUM ( A_VARCHAR, B_INT ) VALUES ( 'AB', 2 )
INSERT INTO HAVING_SUM ( ...
0
votes
2answers
187 views
Rewriting subquery has having clause into a join?
I have a table with columns like this;
site, chromosome, strand.
The pair of site and chromosome should be unique while they can have more than one strand.
Before loading the data, I found that some ...
0
votes
1answer
2k views
NHibernate HQL - select count(*) with having - can't get it to work
Trying to run the following HQL with NHibernate:
select count(distinct t) as TweetCount
from Tweet t
join t.Tweeter u
left join t.Votes v
left join t.Tags tag
where t.App = :app
having ...
0
votes
2answers
249 views
Sql - struggling with count/having query based on several joins
I'm struggling to get my query working. Basically, what it should do is only return vacancies that haven't been filled. For example, a vacancy can have a pre-determined limit of 5. To fill this, it ...
0
votes
1answer
35 views
How to use having on un-aggregate field in MySQL?
select xx as fieldA from ... group by xxx having fieldA is not null
I found that having has no effect
0
votes
2answers
108 views
I'm having problem with SUM() in MySQL
I want to fetch the BalanceAmt of a particular Customer attended by a particular attender. The criteria is that a customer may buy more than one items. Each bought items has been recorded ...