Use GROUP BY clause to list only the unique data : Group « Select Clause « SQL / MySQL

SQL / MySQL
1. Backup Load
2. Command MySQL
3. Cursor
4. Data Type
5. Database
6. Date Time
7. Flow Control
8. Function
9. Insert Delete Update
10. Join
11. Key
12. Math
13. Procedure Function
14. Select Clause
15. String
16. Table Index
17. Transaction
18. Trigger
19. User Permission
20. View
21. Where Clause
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL / MySQL » Select Clause » Group 
Use GROUP BY clause to list only the unique data

/*

mysql> select * from sales;
+-----+------------+--------+--------+--------+------+------------+
| num | name       | winter | spring | summer | fall | category   |
+-----+------------+--------+--------+--------+------+------------+
|   1 | Java       |   1067 |    200 |    150 |  267 | Holiday    |
|   2 | C          |    970 |    770 |    531 |  486 | Profession |
|   3 | JavaScript |     53 |     13 |     21 |  856 | Literary   |
|   4 | SQL        |    782 |    357 |    168 |  250 | Profession |
|   5 | Oracle     |    589 |    795 |    367 |  284 | Holiday    |
|   6 | MySQL      |    953 |    582 |    336 |  489 | Literary   |
|   7 | Cplus      |    752 |    657 |    259 |  478 | Literary   |
|   8 | Python     |     67 |     23 |     83 |  543 | Holiday    |
|   9 | PHP        |    673 |     48 |    625 |   52 | Profession |
+-----+------------+--------+--------+--------+------+------------+
9 rows in set (0.01 sec)

mysql> /* Use the following GROUP BY clause to list only the unique states in th
e cust_state column of the duck_cust table.
mysql>  */
mysql> SELECT FROM sales
    -> GROUP BY category;
+-----+------------+--------+--------+--------+------+------------+
| num | name       | winter | spring | summer | fall | category   |
+-----+------------+--------+--------+--------+------+------------+
|   | Java       |   1067 |    200 |    150 |  267 | Holiday    |
|   | JavaScript |     53 |     13 |     21 |  856 | Literary   |
|   | C          |    970 |    770 |    531 |  486 | Profession |
+-----+------------+--------+--------+--------+------+------------+
rows in set (0.00 sec)

*/
Drop table sales;
  
CREATE TABLE sales(
    num MEDIUMINT NOT NULL AUTO_INCREMENT,
    name CHAR(20),
    winter INT,
    spring INT,
    summer INT,
    fall INT,
    category CHAR(13),
    primary key(num)
)type=MyISAM;


insert into sales value(1'Java', 1067 200150267,'Holiday');
insert into sales value(2'C',970,770,531,486,'Profession');
insert into sales value(3'JavaScript',53,13,21,856,'Literary');
insert into sales value(4'SQL',782,357,168,250,'Profession');
insert into sales value(5'Oracle',589,795,367,284,'Holiday');
insert into sales value(6'MySQL',953,582,336,489,'Literary');
insert into sales value(7'Cplus',752,657,259,478,'Literary');
insert into sales value(8'Python',67,23,83,543,'Holiday');
insert into sales value(9'PHP',673,48,625,52,'Profession');

select from sales;


/* Use the following GROUP BY clause to list only the unique states in the cust_state column of the duck_cust table.
 */


SELECT FROM sales
GROUP BY category;


           
       
Related examples in the same category
1. Another GROUP BY
2. Use GROUP BY
3. GROUP BY with order and HAVING
4. Use GROUP BY 2
5. Use GROUP BY and ORDER BY together
6. Get GROUP BY for COUNT
7. Simple GROUP BY
8. GROUP and sort the records
9. GROUP value and count
10. Grouping Data: Filtering Group Data
11. Grouping Data: 03 Using the HAVING Clause 1
12. Grouping Data: Using the HAVING Clause 1
13. Using math function in HAVING
14. GROUP and HAVING with sub query
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.