Tagged Questions

Error: 1111 - Invalid use of group function

learn more… | top users | synonyms

8
votes
5answers
49k views

SQL Group By with an Order By

I have a table of tags and want to get the highest count tags from the list. Sample data looks like this id (1) tag ('night') id (2) tag ('awesome') id (3) tag ('night') using SELECT COUNT(*), ...
3
votes
2answers
4k views

MySQL: Invalid use of group function

I am using MySQL. Here is my schema: Suppliers(sid: integer, sname: string, address string) Parts(pid: integer, pname: string, color: string) Catalog(sid: integer, pid: integer, cost: real) ...
2
votes
3answers
195 views

Update a column with a COUNT of other fields is SQL?

Hi guys I have the following tables set up: Articles: ID | TITLE | CONTENT | USER | NUM_COMMENTS COMMENTS ID | ARTICLE_ID | TEXT I need a sql statement which updates the NUM_Comments field of the ...
2
votes
3answers
43 views

sql query help? Sql newbie question

I keep getting this statement "Invalid use of group function" for this query mysql_query("UPDATE users SET users.lastmessage = MAX(messages.id) WHERE users.name ='tom'") or die(mysql_error()); ...
2
votes
1answer
112 views

ActiveRecord syntax for finding all items with an average rating of x or greater when using a join

I have two models in my rails application. Items and Reviews. Reviews belong to Item and Items has many Reviews. The review model looks like this: create_table "reviews", :force => true do |t| ...
2
votes
3answers
406 views

mysql query to update field to max(field) + 1

What I want to do is: UPDATE table SET field = MAX(field) + 1 WHERE id IN (1, 3, 5, 6, 8); The semantics of this statement, in my mind, would be first the database would go off and determine for me ...
2
votes
1answer
199 views

Why would this SQL error with “Invalid use of group function”?

This is a simple query ran when the user presses logout from my website UPDATE `user_logins` SET `active` = 0 WHERE `user_id` = 3 AND `datetime` = MAX(`datetime`) LIMIT 1 The user_id ...
2
votes
3answers
65 views

counting rows that date hasn't yet passed

I am trying to count the number of rows whose date has not yet passed so i can get only the current records I get an error sayng MySQL error #111 Invalid use of group function SELECT ...
1
vote
2answers
165 views

mysql nested count - how?

Here's the initial query: SELECT COUNT(column) FROM table GROUP BY column; This gives me something like the following: COUNT(column) 2 4 1 1 3 etc. BUT I need to to count all of those together in one ...
1
vote
3answers
155 views

mysql group concat

how can I group concat? here is my query select t.date, group_concat(count(*)) from table1 t group by t.date but it returns error "Invalid use of group function" If I use query like this select ...
1
vote
1answer
323 views

MySQL select count(*) statement excluding minimium value

I have a simple MySQL select statement: SELECT COUNT(*) AS COUNT FROM MY_TABLE WHERE TIME_STAMP > ? But I do not want to count the first/earliest row if the TIME_STAMP for that earliest row is ...
1
vote
2answers
77 views

Calculating commission

I am trying to calculate commissions payable to clients at the beginning of every month (providing their commission is more then £25). Here is the SQL: SELECT SUM(invoiceCommision) as totalSum FROM ...
1
vote
2answers
575 views

#1111 - Invalid use of group function

I am using the following query in an attempt to get  total number(sum) of slides retrieving the max number from each project, however I am receiving the following error (#1111 - Invalid use of group ...
1
vote
1answer
258 views

mysql: select between

I am getting invalid use of group function, not really sure where the problem is expected result is list of timestamps from within xxx seconds starting from the max available Please advise. ...
1
vote
2answers
118 views

Mysql how to use COUNT value of rows from joined table in WHERE statement?

Like that: COUNT(i.t_1) AS total_images WHERE total_images > 2 Throws an error: Unknown column "total_images" in where clause If this way: WHERE COUNT(i.t_1) > 2 Throws an error: ...
1
vote
1answer
100 views

MySQL fetch a field where the field exists > x times in table

I'm trying to do the following in MySQL: SELECT DISTINCT field FROM table WHERE COUNT(field) > 10 Which fails with: 1111 - Invalid use of group function (from what I understand, you can't use ...
1
vote
4answers
365 views

mysql where count(column_name) = 1?

Here is the query I am using: SELECT k_id, COUNT(k_id) AS k_count FROM template_keyword_link WHERE k_id IN(1,2,3,4,5) GROUP BY k_id; This query returns something like 1 | 6 2 | 1 3 | 4 4 | 1 5 | ...
1
vote
2answers
66 views

MySQL: Delete singular entires

If I have this table: +------+-------+---------------+--------+-----------------+------------+-----------+----------------+------+------+--------+------------+------------+ | type | class | username ...
1
vote
2answers
360 views

MySQL Query Problem with Alias and Aggregate Functions

I have a troublesome MySQL query as follows: SELECT camera_id, ((avg(low_price) + avg(high_price)) / 2) as avg_price FROM camera_general, camera_products WHERE camera_id = ir_camera_id AND dp_post_dt ...
1
vote
3answers
440 views

mysql use group by column in where condition

How can I make this query work : SELECT column1.....,SUM(Hits) AS Hits FROM table WHERE SUM(Hits) > 100 GROUP BY column1..... The problem is the where clause, mysql display error : Error ...
1
vote
2answers
1k views

MySql Sql MAX and SUM error

select sum(value) as 'Value',max(value) from table_name where sum(value)=max(sum(value)) group by id_name; The error is: Invalid use of group function (ErrorNr. 1111) Any idea? Thanks.
1
vote
2answers
517 views

SQL Query to Select Everything Except the Max Value

I have this rather complex query that grabs data from three tables, and now I want it to be even more complicated (Oh dear)! I'd like the last posted feature to be displayed in it's own section of ...
0
votes
2answers
35 views

Count the number of new records for a given date only if they are new

I am trying to count the number of new records for a given date only if the date of the record is the min(date) for the record owner. Here is the query I am trying to run: SELECT COUNT(*) FROM ...
0
votes
2answers
42 views

INSERT… SELECT… WHERE… ON DUPLICATE… mysql query

Please help. I'm trying to update this one table with the current count of assets our products have. If the product already exist in the table, it should update the most updated count of the product. ...
0
votes
2answers
147 views

Constraints on SUM function in MySQL query

I'm working on developing a basic search engine in MySQL. the search is based on keywords, and each searchable item has a number of keywords associated with it. Each keyword has a weight associated ...
0
votes
1answer
162 views

mySQL query error 'Invalid use of group function'

I have set up a price comparison tool that crawls websites and then detects price changes. I have a table that contains the price, the items id and the scan id. I have another table which contains the ...
0
votes
1answer
223 views

MySQL: UPDATE with a JOIN and a GROUP_CONCAT

Is this possible? I have 2 tables, Customers and Orders. Now I want to fill a column in Customers with all order id's of that customer (comma separated). I tried something like this, but it doesnt ...
0
votes
2answers
115 views

why this query is faling?

select max( sum(duration) ),cd from rent group by cd; . ERROR 1111 (HY000): Invalid use of group function
0
votes
3answers
223 views

SQL - Having aggregation in MySQL

I'm using MySQL and writing this query : select gauno, count(potno) from druide_potion group by gauno having count(potno) = min(count(potno)) But Mysql says : "#1111 - Invalid use of group ...
0
votes
1answer
201 views

MySQL Average unique x for day of the week

I'm trying to get a MySQL query together to get the average amount of unique devices from a table which logs mac addresses, for each day of the week in a given month and year. So far i have this to ...
0
votes
2answers
73 views

some help with aggregate functions

I am trying to create a dynamic table using php but needed to get the query below to work normaly but am experiencing an error which I have given below the query. I need some help to fix it. SELECT ...
0
votes
2answers
87 views

Strange Mysql error 1111, supposedly worked before

I am trying to troubleshoot a particular 'report' that gets generated on a PHP application running on a VOIP platform (billing related). The person that asked me to do this stated "it worked before" ...
0
votes
2answers
46 views

error in sql query

I am writing an query in sql and getting an error: Invalid use of group function What does it mean? In my query, where clause is given below: select c.name,s.contact,s.number from list c , senior ...
0
votes
1answer
192 views

MySQL, Using a Subquery to get Rank of Score

I am trying to find out where this particular player ranks among shooting guards in the NBA. I am using this post on stackoverflow for a guide. I get the error "Invalid use of group function". ...
0
votes
3answers
106 views

Help with a select count query

I want to show all cities that have have a count > 5. I have tried to limit my results anything over a count of 5 but it isn't working. SELECT user.city, Count(user.city) AS cnt FROM user Inner ...
0
votes
2answers
200 views

Mysql error 1111 in one version of query and error 1054 in another

I have two tables: books: [isbn, book_title, publisher, ...] inventory: [isbn, date, num_changed] I want to return book titles for those which are on stock. I tried a join (query 1) and got 1054 ...
0
votes
1answer
83 views

MySQL Invalid use of group function on shared host

I need to know the team with highest number of matches in a certain city. SELECT COUNT(am_matches.team_id) AS matches_count, am_matches.team_id AS team_id FROM am_matches LEFT JOIN am_team ON ...
0
votes
1answer
347 views

Mysql query - invalid use of group function

mysql_query(" SELECT b.id as b_id FROM banner b INNER JOIN bannerhits bl ON ...
0
votes
2answers
234 views

SQL how to count all rows up to a max value

I am having trouble counting the number of rows until it reaches a certain PK. My PK is called id and I want to count all rows until i reach a specified id I have tried using this query but it ...
0
votes
2answers
2k views

CakePHP: How do I count the number of hasMany records in a find?

I have two models, Post hasMany Comment. How do I select all Post that have less than two Comment? I tried using a find with 'fields'=>array('COUNT(Comment.id) as numComments','Post.*'), (and then ...
0
votes
5answers
146 views

querying for user's ranking in one-to-many tables

I am trying to write a query to find the score rank of a user's games. I need it to take in a user id and then return that user's relative ranking to other user's scores. There is a user and a game ...
0
votes
2answers
304 views

mysql update table from another table

I'm trying to update a field in one table, from the sum of another field, in another table. company_tbl (PRIMARY, companySize, companyName) location_tbl (PRIMARY, companyID, locationSize, ...
0
votes
3answers
147 views

Is there a way to optimize this update query?

I have a master table called "parent" and a related table called "childs" Now I run a query against the master table to update some values with the sum from the child table like this. UPDATE master ...
0
votes
1answer
491 views

Invalid use of group function in MySQL 4 (not in 5)

Any idea why query SELECT m.* FROM products_description pd, products p left join manufacturers m on p.manufacturers_id = m.manufacturers_id, products_to_categories p2c WHERE ...
0
votes
1answer
58 views

MySql Group function error

select nume,model,sum(km_sosire-km_plecare) as 'km_parcursi' from masina m inner join (foaie_parcurs f inner join angajat a using(id_angajat)) using(id_masina) where sum(km_sosire-km_plecare)>100 ...
0
votes
2answers
1k views

MySQL INSERT INTO / ON DUPLICATE KEY with SELECT statement issue

Howdy - I'm a MySQL Noob. I have a table of various business listings and I am trying to populate a second table called cities that contains unique city names along with a count of how many listings ...
0
votes
1answer
1k views

MySQL: UPDATE with SUM and JOIN

I'm trying to do a SUM and store it in another table. The SUM is simple : SELECT award.alias_id, SUM(award.points) AS points FROM award INNER JOIN achiever ON award.id = achiever.award_id ...