Collections:
Group Functions with Non-group Selections in MySQL
Can Group Functions Be Mixed with Non-group Selection Fields in MySQL?
✍: FYIcenter.com
If a group function is used in the SELECT clause, all other selection fields must be group level fields. Non-group fields can not be mixed with group fields in the SELECT clause. The script below gives you an example of invalid SELECT statements with group and non-group selection fields:
mysql> SELECT COUNT(*), url FROM fyi_links; ERROR 1140 (42000): Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
In this example, COUNT(*) is a group field and "url" is a non-group field.
⇒ Dividing Query Output into Groups in MySQL
⇐ Using Group Functions in the SELECT Clause in MySQL
2017-10-16, 2079🔥, 0💬
Popular Posts:
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...