Microsoft
Software
Hardware
Network
Question : msql cout by group query
hi, i am struggling with a query...
i have a table..
id type way
1 RW 2
2 FF 3
3 RW 3
4 RW 2
5 RW 2
6 RW 1
7 RW 2
I am wanting to list each unique type/way pair(way could be any number) with the number of times it occurs, eg...the above would return...
type way count
RW 1 1
RW 2 4
RW 3 1
FF 3 1
i know i can count one pair...
SELECT COUNT(type) AS the_type WHERE way='1' AND type ='RW'
i can then echo the_type with php, but how do i count and echo all type/way pairs
cheers
Answer : msql cout by group query
select distinct id, count(type), count(way) from Table
group by type, way;
Random Solutions
ZyXel GS-1548 switch
Cisco ASA 5505 not passing traffic (Possible NAT or ACL issue)
GroupWise 6.0.1 - Some addresses are undeliverable and have been crossed out
Unattended Windows 7 Installation answer file not working
Safari 5 Crashes immedietly
Informatica installation issues windows, cannot ping
PHP.ini file 'display_errors' is set to Off but errors still appear on page?
How can I find out what type of driver I need for a "other device, Unknown Device" for a nc6400 laptop
How to diagnose hard disk physical & logical errors ?
how to use CFCONTENT to deliver files from a folder outside web root, to a web browser? and loop through a series of fileIDs associated with a DocumentID