MySQL Error 1140: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause.
0
votes
0answers
21 views
ONLY_FULL_GROUP_BY not set but still have Error 1140
I am finalizing the implementation of my website but now I have a problem that occurs online that I have not locally.
I get this error:
"failed: Mixing of GROUP columns (MIN (), MAX (), COUNT (), ...
2
votes
1answer
672 views
SQL count returns error when no GROUP BY clause
Why I get error with this query on my live server but not on my wamp localhost?
SELECT
type as type,
COUNT(*) AS total
FROM page AS p
WHERE p.parent_id = p.page_id
the error message is,
...
1
vote
3answers
388 views
MYSQL SELECT DISTINCT with additional column in result set
Here's an example table:
CREATE TABLE `deals_unsorted`.`temp_demo` (
`id` INT( 4 ) NOT NULL AUTO_INCREMENT ,
`price` INT( 5 ) NOT NULL ,
`name` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE ...
0
votes
1answer
245 views
MYSQL Group Gy ordering with Count?
I'm trying to do something similar to MySQL Group By ordering, but with a count, which means I need to preserve the group.
Using the same example:
id time text otheridentifier
...
1
vote
6answers
7k views
MySQL: Include COUNT of SELECT Query Results as a Column (Without Grouping)
I have a simple report sending framework that basically does the following things:
It performs a SELECT query, it makes some text-formatted tables based on the results, it sends an e-mail, and it ...
0
votes
2answers
83 views
MySQL aggregation problems
I'm trying to count how many essays have been graded so I know how many results to display on the page. But I can't seem to get the code to work properly can someone help?
Thanks for the help in ...
0
votes
2answers
84 views
MySQL aggregation error
I'm trying to count all the ids form table3 that are related to the first two tables but I think my SQL code is wrong can some one help me fix it?
Here is the code:
$dbc = ...
3
votes
1answer
2k views
Zend_Db_Select - Joins and Count - Possible Zend Bug?
I'm having an issue getting a COUNT() from a SQL query using Zend_Db_Table_Select, and I think it may be a possible bug because the SQL it should be generating actually works. Here's the Zend Select ...
0
votes
3answers
1k views
Mixing of Group Columns with No Group Columns
I got this error and I'm not sure how to work with it. Simple explanations would be much appreciated. Error:
1140: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is ...
6
votes
3answers
9k views
MySQL #1140 - Mixing of GROUP columns
Hi wondering if perhaps someone could shed some light on the below error. The sql works fine locally but i get the the below error remotely.
SQL query:
SELECT COUNT(node.nid),
...
0
votes
1answer
625 views
Help with a specific MySQL query: how to get the smallest value from a group of several values
I have a table 'foo' with a timestamp field 'bar'. How do I get only the oldest timestamp for a query like: SELECT foo.bar from foo? I tried doing something like: SELECT MIN(foo.bar) from foo but it ...