Tagged Questions

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
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 ...
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
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
188 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
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
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
37 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
69 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
2answers
83 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
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
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
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
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
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, ...
0
votes
1answer
18 views

MySQL - strange return for select clause

Why does the following clause does not return, for each userId, it's last connection date ? I have 31 distinct userids in the table, each one with many dates... select userid, date from connections ...
0
votes
1answer
18 views

How to check if rows exist during a mysql search JOIN query?

I have this sql search query that works, but it only works if votes exist in the votes table. mysql_query("SELECT m.Title, r.Subject, SUM(v.IsGood) AS Good, SUM(v.IsBad) AS Bad FROM Movies m ...
0
votes
1answer
77 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
1answer
45 views

MySQL Update Subset Having

I have three tables: contacts, domains, and contacts_domains, which form a many-to-many relationship. I would like to run a query that updates the contacts_domains table, but only for domains that ...
0
votes
0answers
87 views

MYSQL SUM & HAVING Performance

I want to SUM the values of one column and count the total number of columns of every client. Here is the Query: SELECT mp.IdClient, SUM(mp.Points), COUNT(*), c.Name, c.Surname FROM client_projects ...
0
votes
1answer
25 views

how to get records of a table whose id's are taken from a select statement

I have two tables. I try to select some records from one of them. Then, ID's part of that selection should be used to select some records of the other table. For that, I wrote a statement which takes ...
0
votes
2answers
84 views

Can I paginate a custom query without overriding the default pagination?

In my CakePHP (1.2) app, I have two actions that both use pagination - index and search. In a previous question I learnt that, in order to apply a threshold score to search results, I need to use the ...
0
votes
1answer
30 views

Selecting duplicate entries from a table and getting all the fields from the duplicate rows

I have a table like this. id day1 day2 day3 1 411 523 223 2 413 554 245 3 417 511 209 4 420 515 232 5 422 522 212 6 483 567 212 7 ...
0
votes
3answers
53 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
64 views

Expand a GROUP BY and HAVING resultset

Is there a way to expand/get all the records of a GROUP BY and HAVING query? For example, SELECT Column1, Column2, Column3, Count(*) as Count FROM table_name GROUP BY Column1, Column2, Column3 ...
0
votes
1answer
28 views

Choose a preferred row out of partially duplicate data

I have the following query: select mb.id as meter_id ,ds.mydate as mydate ,mb.name as metergroup ,sum(ms.stand) as measured_cum_value ,me.name as energy_medium ,e.name as ...
0
votes
3answers
104 views

How to make sure HAVING happens before GROUP BY

I'm grabing a list of banks that are a certain distance from a point ICBC 6805 119.86727673154 Bank of Shanghai 7693 372.999006839511 Bank of Ningbo ...
0
votes
2answers
20 views

Is it posible to select a stack of value by using MYSQL GROUP BY

I got a query like this : SELECT email FROM abc_table GROUP BY email HAVING ( COUNT(email) > 1 ) So it will return me : email a@b.com c@d.com e@f.com And now i need to adjust the ...
0
votes
1answer
75 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
81 views

MySQL INSERT SELECT. Ordering insert by count but don't actually insert the count number

Sorry for the ridiculous title! Is it possible to run a MySQL INSERT SELECT query where the 'SELECT' portion includes a COUNT() function (to benefit from a HAVING clause) -- this creates an ...
0
votes
1answer
144 views

Select rows using GROUP BY and HAVING with aggregate function

I have a table filled with bus stops. Each stop has a line_id, a direction and coordinates (lat and lng). I want my query to return the closest stop for each line/direction. SELECT * from stops ...
0
votes
1answer
630 views

MySQL GROUP BY and HAVING

I'm grouping my results based on a column X and I want to return the rows that has highest Column Y's value in the group. SELECT * FROM mytable GROUP BY col1 HAVING col2 >= (SELECT MAX(col2) ...
0
votes
3answers
372 views

mysql group by and sort each group

the table is : |       ID      |     NAME      |      TIME      | ...
0
votes
3answers
427 views

MySQL: Not Having a string Like in a group?

I have two columns in a table: VisitorID, and URL. An entry exists in the table for every page view a visitor makes. I'd like to see the total number of visits for each Visitor, where NONE of the ...
0
votes
3answers
195 views

How do I count MySQL entries with a HAVING criterion

So usually you can just do SELECT COUNT(field.id) FROM table WHERE field.id > 100 and COUNT(field) will return the number of entries that has the criterion of field.id > 100 But then what if ...
0
votes
2answers
260 views

MySQL / Ruby on Rails - How to “SUM” in a :has_many case

I have the following tables: User :has_many Purchases Item :has_many Purchases Item has a column "amount" (can be + or -) and I need to find all Users that have a positive SUM of ...
0
votes
4answers
1k 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 DESC LIMIT 10; I want ...