The having tag has no wiki summary.
0
votes
1answer
17 views
How to do build this mongoDB query (mongomapper)
I have certain documents with a name: String and a version: Integer.
What I need is a list of the highest version per name.
So I think I need to do the equivalent of group by in sql and then a ...
0
votes
1answer
35 views
SQL group function nested too deeply
I'm trying to create an sql query that will return the smallest occurrence of an id appearing between two tables however I keep getting the error with the line HAVING MIN(COUNT(E.C_SE_ID)) Oracle is ...
2
votes
3answers
32 views
SQL Server - Get customers with nth order in specific date range
I'm tasked with the following:
Select a list of all customers who had their nth order during a certain date range (usually a specific month).
This list needs to contain: customer id, sum of first n ...
1
vote
2answers
31 views
Find several MAX values in SQLite
I have a problem with one tricky query.
So, I have a table like so:
CREATE TABLE correlations
(
key1 integer not null,
key2 integer not null,
)
From there I need to select list of key1's ...
0
votes
1answer
35 views
LINQ - 3 sub selects with group by having count
SQL:
SELECT i.name, l.city, COUNT( l.city ) AS num
FROM locality l
JOIN event e ON e.ID_locality = l.ID
JOIN program p ON p.ID_event = e.ID
JOIN interpreter i ON i.ID = p.ID_interpreter
WHERE i.name ...
0
votes
1answer
26 views
Count Distinct Duplicates Within Groups in MySql
I have an SQL table called main_table:
id | product_id | purchase_id | purchaser_id
---+------------+-------------+-------------
1 | 1 | 1 | 1
2 | 1 | ...
0
votes
1answer
41 views
How to list result in null or empty data from SQL Server having sum?
How to list products that are not (null = 0) ?
STHAR TABLE
id STHAR_GCKOD STHAR_GCMIK
------------------------------------------------
1 NULL NULL
99 ...
1
vote
3answers
62 views
Oracle ORDER BY with rownum or HAVING >= ALL
My database teacher asked me to write (on Oracle Server) a query: select the groupid with the highest score average for year 2010
I wrote:
SELECT * FROM (
SELECT groupid, AVG(score) average ...
0
votes
1answer
13 views
Multiple mysql joins causing issue with query
I'm using the following query to filter and score results which are assigned to certain categories which is working perfectly right now. However, if I try to do another join, to be able to factor in ...
0
votes
2answers
46 views
Group by: ORA-00937: not a single-group group function
Why is this query not working properly?
SELECT e.*
FROM enrolled e
FULL OUTER JOIN student s ON e.studentid = s.sid
WHERE ((e.quarter = 'Fall') OR (e.quarter = 'Spring'))
GROUP BY e.studentid
...
1
vote
4answers
54 views
Where, either or not both clause SQL
I am trying to list students who were enrolled in at least one course in Fall quarter or at least one course in the Spring quarter, but not both. I have tried to go at this from different angles but ...
0
votes
2answers
32 views
SQL Division after HAVING-clausel
i have a sql problem. I got two tables:
album (asin(pk), title, artist, price, release, label, rank)
track (album(pk), dsk, posn, song)
I need to find cheap albums where the price per song is ...
0
votes
1answer
36 views
Finding and displaying duplicate values using WHERE IN to compare two values
I have a MYSQL database where I would like to compare duplicated values based on two values in a column. For Example
Database
field_one | field_two | field_three
...
1
vote
2answers
35 views
MYSQL Query - When col1 has only 'Special' use that else use one of the other
Following dataset
ID | Description | Type
-------------------------------
12204 | ABC | Special
12204 | DEF | Connector
12541 | GHI | Special
12541 | JKL | ...
0
votes
1answer
31 views
SQL Group by Child Table with conditions
I have simplified it a bit to ask this question. So just run with the tables as they are please.
I have two tables
Parent Table columns are
ParentId,Parent_FirstName,Parent_LastName
Child Table ...
0
votes
3answers
87 views
MySQL query select all fields with same value
be I'm looking for help in writing a MySQL query.
Each row has a minimum of two rows with the same conversation_id. I want to select those that that have "delete" in the recipient_state field in all ...
0
votes
5answers
63 views
Replacing HAVING with WHERE
SELECT team, sum(maths)
FROM marks
GROUP BY team
HAVING sum(maths) = (
SELECT max(sum(maths))
FROM marks
GROUP BY team
)
There are three teams A,B,C with some no of members in it.
First ...
0
votes
4answers
39 views
How does this query with HAVING MAX actually works correctly?
I have 2 simple tables: students(sno,sname,age) and take(sno,cno). Take is the table of a N-N relationship between students and courses.
I want to find students NOT taking a specific course.
The ...
0
votes
2answers
65 views
HAVING clause in one query with subquery
Is it possible to have multiple HAVING in one query?
Here is my sample query:
SELECT household_tbl.household_connector_id AS h_id
, (
SELECT COUNT(household_connector_id)
FROM ...
1
vote
2answers
60 views
Column Unkown With UPPER in HAVING clause for Column alias
I have a webapp that uses DataTables with server side processing. I have some SQL Queries that arbitrarily regroups data in columns, so I get queries like this:
SELECT case `column`
WHEN 'value1' ...
1
vote
2answers
70 views
MySQL using table field in subquery as condition
After a lot of searching I came to following sql statement:
SELECT a.*, b.name as producer ,
(SELECT ROUND(AVG(average))
FROM `abc123_pb_carexperience` d
LEFT JOIN `abc123_pb_cars` e on ...
0
votes
2answers
72 views
MySQL having SUM(column1) <> column2 does not work
I'm working on a query that uses having to compare a sum of elements from a joined table to a value of a field from the "main" table.
Here's the gist of my query:
SELECT t1.id
FROM table1 AS t1
INNER ...
0
votes
1answer
86 views
Doctrine from Symfony ignoring part of my having clause?
I have the following code:
$sub_questions_no_restricted = Doctrine_Query::create()
->select("q2.id")
->from("question q2")
...
0
votes
1answer
44 views
SQL - nested aggregates
I have this:
SELECT BRAND_ID, CAST (ROUND (AVG(PROD_PRICE), 2) AS NUMERIC (9, 2)) AS 'LARGEST AVERAGE'
FROM LGPRODUCT
GROUP BY BRAND_ID
and it displays a bunch of average prices, per ...
1
vote
0answers
36 views
Column Sum and subquery gives errors
I have one table where I want to know the outstanding balance of two the sum of columns
The Table looks something like this
journalid | senderid | sourcenr | accountnr | debitamount | creditamount | ...
0
votes
2answers
113 views
Select count of dates older than x days
My example table:
+----------+---------------------+
| username | time |
+----------+---------------------+
| john | 2013-02-04 17:39:43 |
| john | 2013-02-03 00:21:31 |
| ...
0
votes
3answers
23 views
Querying on a record with different occurence
I have this scenario
|---COL A ------------------COL B----|
|----001 ----------------------X-----|
|----001 ----------------------X-----|
|----002 ----------------------Y-----|
|----002 ...
1
vote
2answers
80 views
MYSQL COUNT HAVING Issue
I have 2 tables a forum topic table and forum comments.
I am trying to get a list of all forum topics with a count of how many comments are in each topic.
The comments table contains the PK of the ...
0
votes
1answer
86 views
SQL Syntax check
I wanted to know if I this sql syntax is right?
Select t
from S
having sum(S.r) between 0 AND 10000
My question is about the Having sum() Between X and Y
Is that correct?
0
votes
1answer
85 views
Distinct not working properly
I've wrote a query with DISTINCT but I still get duplicate records returned.
SELECT DISTINCT
`cuisine_types`.`id`,
`cuisine_types`.`name`,
`cuisine_types`.`image`,
(
SELECT ...
0
votes
2answers
55 views
Group by with having on a non-aggergate function does not work
Why is this SQL statement:
select team,avg(salary) 'Average Salary' from orgchart group by team having salary <38000;
Gives the following error?
mysql> select team,avg(salary) 'Average ...
0
votes
0answers
98 views
CakePHP 2.2.4 cannot paginate results using HAVING clause and calculated field - Haversine formula
I'm trying to paginate a list of results when calculating distances using the haversine formula in CakePHP 2.2.4, but I'm getting errors around the calculated field in the having clause.
I've ...
1
vote
1answer
86 views
How do I use the having clause on an aggregate in a complex group by and join query in LINQ
I have reviewed a lot of the questions and answers here but cant seem to find what I need.
I have the following sql below which I am having real trouble getting into a LINQ statement.
The specific ...
0
votes
1answer
53 views
Indexing a column in HAVING clause - MySQL
I got a table with over 12 columns. This is the mysql query used to retrive the latest 7 records
SELECT * FROM data WHERE user_id IN(12,10,7,1) HAVING continent IN('Europe','America','Australia') AND ...
0
votes
3answers
132 views
mysql having… > avg() doesn't work as expected
I've created two views to help calculate user_diary_number and then select users of whom diary numbers > average of total user's user_diary_number.
two views are like below:
create view ...
2
votes
1answer
106 views
How to select top x records for every group
I tried something like this
select Id,UserId from myTable group by Id,UserId having COUNT(UserId)<7
Now what i want to do is selecting 6 records for each userid. But my approach failed.
So what ...
2
votes
3answers
56 views
MySQL : Make HAVING select also “null”
I have two tables : dilemme and like.
The first one contains articles and the second one contains votes.
The script SELECT randomly one article to show and the user can vote (it's like and dislike).
...
1
vote
3answers
65 views
Return Only Results with more than one Correct Choice
I need to come up with a query that will show which questions have more than one correct answer. Been searching and could not find exactly what I need. I found this, which is kinda what I want, but ...
3
votes
1answer
93 views
filter SELECTed rows by HAVING by variables value changed in column description
Can anyone explain the differences between following two requests:
SET @foundnow=0;
SELECT id, (@foundnow:=IF(`id`=3,1,0)) as ff
FROM `sometable`
HAVING @foundnow=0
...
2
votes
1answer
39 views
Mysql - find conversation only being held by two users
I have a table called participants with the following fields:
id
user_id
conversation_id
The background is that there are conversations with at least two or more participants. I want to find ...
2
votes
2answers
84 views
MySQL query with grouping, a procedure and “HAVING”
I currently have this query:
SELECT *, GEODIST(41.3919671, 2.1757278, latitude, longitude) distance
FROM offers_all
WHERE id_family=1761 AND GEODIST(41.3919671, 2.1757278, latitude, longitude) <= ...
0
votes
1answer
33 views
Selecting duplicates from multiple joined tables
I have a customer_product table where the identifier is the "stock_code".
I then have three tables:
bom_component
routing
material_process
Each of these tables are joined to a customer_product ...
0
votes
0answers
34 views
asp.net mvc post form with multiple buttons using ajaxSubmit
I have a form in asp.net MVC which has 3 submit buttons. I have 2 action methods called on click of 3 different buttons. I am using MultiAction filter attribute.
This works well if i do post back. ...
1
vote
3answers
36 views
MySQL Searching in Many-to-Many
I've begun working on my first MySQL database, and I've run into a simple problem.
I have my movies categorized by genre in a 'many-to-many' relationship:
'movies' Table
...
0
votes
2answers
186 views
SQL SUM, Group by and Having query
I have a pretty standard query that will get me a list of products that have stock above 0.
This works fine, however I now need to ADD the SUM of all negative numbers for BranchID 31 for the given ...
0
votes
2answers
57 views
MySQL values that do not exist in IN statement
If the fruits table of my database contains
apples
pears
and my IN statement contains
pears
apples
bananas
How do I find the value(s) that exist in the IN statement but do NOT exist in the ...
1
vote
2answers
216 views
Implement SQL function having() in Magento
I need a SQL function "having" in Magento. As far as I know, there is no having function.
So I try to implement it in collection class
public function addAttributeHaving($attribute)
{
...
1
vote
2answers
137 views
Using SQL to return results which match ALL the items in an array using joined tables
I'm stumped on a SQL query and need your help. In plain English, I need to return all of the hotels which offer packages that contain ALL the items I select.
Tables involved are:
hotels (hotel_id, ...
4
votes
1answer
94 views
getting the count of distinct duplicate ids in mysql
this is the query
select count(*),
ss.pname,
ttu.user_id,
ttl.location_name ,
group_concat(em.customer_id),
count(em.customer_id)
from seseal as ss,
...
0
votes
2answers
415 views
Linq to SQL Nested Select Group by Having count
I need convert query from sql to linq
Create Table History
CREATE TABLE [dbo].[History](
[HistoryID] [int] IDENTITY(1,1) NOT NULL,
[AuctionID] [int] NOT NULL,
[UserName] [nvarchar](128) ...








