Tagged Questions
The having tag has no wiki summary.
4
votes
5answers
165 views
MySQL Group By and HAVING
I'm a MySQL query noobie so I'm sure this is a question with an obvious answer.
But, I was looking at these two queries. Will they return different result sets? I understand that the sorting process ...
4
votes
6answers
360 views
SQL Server - Top Saleperson Per Region
SELECT region, person, sum(dollars) as thousands
FROM sales
GROUP BY region, person
ORDER BY region, sum(dollars) desc
The SQL above produces a complete list of sales people per ...
4
votes
2answers
3k views
MYSQL COUNT GROUP BY question
I'd like to only select the rows where the count is greater than 1 (in other words the duplicates) right now from a few thousand records i am mostly seeing ones with a few 2s and 3s here and there
...
3
votes
2answers
47 views
Still confused by having and subqueries in MySQL
I'm trying to select products based on facets for a product category page.
The basic structure is:
Product_Facets
--------------------------------
UID ProductID FacetID ...
3
votes
1answer
177 views
LINQ query using join and aggregate functions
Urgh...my LINQ has suddenly taken a turn for the worse!!
I have two tables and want to join and perform aggregate functions upon the tables.
Firstly, is this possible, I am assuming it is, and ...
3
votes
2answers
2k views
SQL Count where clause
I have the the following SQL statement:
SELECT [l.LeagueId] AS LeagueId, [l.LeagueName] AS NAME, [lp.PositionId]
FROM (Leagues l INNER JOIN
Lineups lp ON ...
3
votes
7answers
749 views
SQL: HAVING clause
See the following SQL statement:
SELECT datediff("d", MAX(invoice.date), Now) As Date_Diff
, MAX(invoice.date) AS max_invoice_date
, customer.number AS customer_number
FROM invoice
...
3
votes
5answers
1k 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, sentenceid and a ...
3
votes
3answers
9k 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 to a particular ...
2
votes
2answers
33 views
MS Access SQL Query - Probably simple, but I'm rusty
I have a form that people can use to send emails to our clients. The user has an option to select between two canned messages (Message "1" or Message "2"). Behind the scenes, every time they hit the ...
2
votes
4answers
71 views
Using a HAVING clause in an UPDATE statement
This query
SELECT
FirstName, LastName, NCAAStats.AccountId, College_Translator.school_name, StatTypeId, COUNT(*) AS 'Count'
FROM NCAAstats
INNER JOIN College_Translator
ON ...
2
votes
2answers
79 views
MongoDB group by Functionalities
In MySQL
select a,b,count(1) as cnt from list group by a, b having cnt > 2;
I have to execute the group by function using having condition in mongodb.
But i am getting following error. Please ...
2
votes
2answers
101 views
PostgreSQL Where count condition
I have following query in PostgreSQL:
SELECT
COUNT(a.log_id) AS overall_count
FROM
"Log" as a,
"License" as b
WHERE
a.license_id=7
AND
a.license_id=b.license_id
AND
...
2
votes
1answer
48 views
How do I use a “HAVING” clause in a Zend_Db_Select statement without parenthesis?
I know Zend provides a having() method, but what I want is a query like:
SELECT a.*, `as`.* FROM `fruit_db`.`apples` AS `a`
INNER JOIN `fruit_db`.`apple_seeds` AS `as` ON a.id = as.apple_id
WHERE ...
2
votes
2answers
87 views
SELECT with GROUP_CONCAT, GROUP BY, HAVING
I Have table with odd_id and i want to select combinations for different ticket_id's. Here's my query:
SELECT
ticket_id,
GROUP_CONCAT(odd_id) as oddsconcat
FROM ticket_odds
GROUP BY ticket_id
And ...
2
votes
1answer
103 views
SQL Having on columns not in SELECT
I have a table with 3 columns:
userid mac_address count
The entries for one user could look like this:
57193 001122334455 42
57193 000C6ED211E6 15
57193 FFFFFFFFFFFF 2
I want to ...
2
votes
4answers
232 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
3answers
196 views
How do I filter a group-by query on the value of a coalesced column?
Here's my Query that does not work because it apparently violates the rules of the HAVING clause:
SELECT
COALESCE(Publisher.name, Affiliate.name) AS Publisher
,dbo.SumKeys(Item.id) AS ...
2
votes
4answers
129 views
Oracle SQL Syntax Question
I am new to Oracle, I am trying to figure out how to query a table (the table is actually a result set, so it will be a subquery), group it by ColA=ColB (see below), and create a calculated field all ...
2
votes
2answers
149 views
HAVING clause properties
I need help with this exercise where I have to translate properties from English into sql.
Questions:
length has at least one 0
Answer: MIN(ABS(length)) = 0
length has more that one ...
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 ...
2
votes
6answers
187 views
Mysql: how to select groups having certain values?
Say there is such table:
mysql> SELECT * FROM tags;
+---------+--------+
| post_id | tag_id |
+---------+--------+
| 1 | 2 |
| 1 | 3 |
| 1 | 1 |
| 2 | 1 ...
2
votes
2answers
537 views
SQL statement HAVING MAX(some+thing)=some+thing
I'm having trouble with Microsoft Access 2003, it's complaining about this statement:
select cardnr
from change
where year(date)<2009
group by cardnr
having max(time+date) = (time+date) and ...
2
votes
4answers
2k views
mysql php query HAVING clause
Im trying to get this query to work but i get this error:
Unknown column 'zips.city' in 'having clause'
`$query = "SELECT
zips.*
FROM
zips
HAVING
zips.city LIKE '%$city%'
...
2
votes
1answer
4k views
Linq with group by having count
how do I write this query in linq (vb.net)?
select B.Name
from Company B
group by B.Name
having COUNT(1) > 1
2
votes
5answers
442 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, could you give some ...
2
votes
2answers
1k views
Subquery returning multiple columns
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. So the result is that I ...
1
vote
1answer
36 views
rollup ignores group by having constraint
+----+-------+-------+
| id | style | color |
+----+-------+-------+
| 1 | 1 | red |
| 2 | 1 | blue |
| 3 | 2 | red |
| 4 | 2 | blue |
| 5 | 2 | green |
| 6 | 3 | ...
1
vote
1answer
68 views
Converting complex mysql SELECT into UPDATE
I have been trying to convert a complex SELECT query to an UPDATE query, but I keep getting the 1064 syntax error.
The goal for the query is to update certain rows which meet particular conditions, ...
1
vote
1answer
46 views
find duplicate records in related tables
Consider the following data structure:
parking garages
|
|_ garage 1
|__ red car
|__ blue car
|_ garage 2
|__ yellow car
|__ orange car
|_ garage 3
...
1
vote
1answer
36 views
TSQL invalid HAVING count
I am using SSMS 2008 and trying to use a HAVING statement. This should be a real simple query. However, I am only getting one record returned event though there are numerous duplicates.
Am I ...
1
vote
2answers
82 views
MYSQL performance issue concat in select or in where
I used to develop databases under ms-sql, and now I've moved to mysql. Great progress. The problem is that I don't have any tool to see graphically the query execution plan...
EXPLAIN doesn't really ...
1
vote
2answers
115 views
tsql distinct having count
I am using SSMS 2008 and am trying to select count of consumers who are part of two different events. Probably this is a simple query, but it is currently not returning expected count. Here is my ...
1
vote
1answer
91 views
how to develop t-sql subquery to select only one record each?
I am using SSMS 2008, trying to select just one row/client. I need to select the following columns: client_name, end_date, and program. Some clients have just one client row. But others have multiple. ...
1
vote
3answers
173 views
SQL query for finding records where count > 1
I have a table named PAYMENT. Within this table I have a user ID, an account number, a ZIP code and a date. I would like to find all records for all users that have more than one payment per day with ...
1
vote
4answers
140 views
Does MySQL use indexes on Having?
A portion of my query looks like:
HAVING date > '2011-04-13 04:28:03'
The date variable is indexed, does this have any effect on the query?
EXPLAIN EXTENDED doesn't seem to be using the index, ...
1
vote
1answer
86 views
SQL Counting Records with Count and Having
I'm having problems with what I thought was a simple query to count records:
SELECT req_ownerid, count(req_status_lender) AS total6
FROM bor_requests
WHERE (req_status_lender = 0 AND ...
1
vote
2answers
323 views
Is there a performance difference between HAVING on alias, vs not using HAVING
Ok, I'm learning, bit by bit, about what HAVING means.
Now, my question is if these two queries have difference performance characteristics:
Without HAVING
SELECT x + y AS z, t.* FROM t
WHERE
x = ...
1
vote
3answers
146 views
What is the semantic difference between WHERE and HAVING?
Let's put GROUP BY aside for a second. In normal queries (without GROUP BY), what is the semantic difference? Why does this answer work? (put an alias in a HAVING clause instead of WHERE)
1
vote
1answer
210 views
PostgreSQL HAVING clause
I posted on here last night looking for help with some homework. I'm down to my last question.
Here's the relevant piece of the schema I am working with:
CREATE TABLE votesOnPoll(
user_id int,
...
1
vote
2answers
114 views
SQL SELECT: value that occur > 1
I'm trying to select duplicates from this table:
snr zip
01 83
02 82
03 43
04 28
Expected result is just empty table. Cuz it got no duplicates.
I've tried with this query:
SELECT snr, zip
FROM ...
1
vote
4answers
144 views
Using SQL Server 2005 I'm trying to do a HAVING in a WHERE clause sound crazy?
Ok, I have over a million records and I need to select all information from the database where the count of a column is greater or equal to 10.
I know that using having I must use group by and using ...
1
vote
4answers
146 views
SQL Group By - Select Both Columns
I have a table of users containing the following columns:
| User_ID (int) | Name (varchar) | Age (int) | Experience_Level (int) |
I would like to create an sql query to output all of the IDs ...
1
vote
6answers
134 views
Having a number in
Can someone give me a query that will return as a result rows ID 1 & 3?
ID Name Hidden
1 Mika 1,4,2
2 Loca 0
3 Nosta 4
4 Like 2
Something like this
SELECT * FROM table WHERE Hidden ...
1
vote
4answers
1k views
Trouble with SQLite SQL Query
I'm trying to run the following query in SQLite 3:
SELECT *,
DISTANCE(latitude, longitude, ?, ?) AS "distance"
FROM "country"
WHERE "id" NOT LIKE ?
HAVING "distance" <= ?
ORDER BY "distance" ...
1
vote
1answer
2k views
'Unknown key(s): having' In Ruby on Rails ActiveRecord Find Method
I have a project which needs to use an agregrate function to sort and return relevant records from one of my active record models. Problem is, despite seeing it used on numerous rails tutorials, and ...
1
vote
1answer
267 views
… where count(col) > 1
I have a table like this:
+-----+-----+-------+
| id | fk | value |
+-----+-----+-------+
| 0 | 1 | peter |
| 1 | 1 | josh |
| 3 | 2 | marc |
| ... | ... | ... |
I'd like now to ...
1
vote
1answer
124 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 amount of hotels that are ...
1
vote
6answers
1k 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(name) > 1. Can anyone ...
1
vote
3answers
79 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 many to be useful, ...