If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > selecting count values for

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-28-06, 09:00
antubis antubis is offline
Registered User
 
Join Date: Feb 2006
Posts: 2
selecting count values for

Here is the problem

Table schema is:

ID, UID, BUILDING, TIME;

I want to count how many are rows contains some BUILDING with some value in a single query. I can`t explain it very good. See the example to understant what i want.

EXAMPLE

1, 2, 0, some time;
2, 2, 0, some time;
3, 2, 0, some time;
4, 2, 1, some time;
5, 2, 1, some time;
6, 2, 3, some time;

The query must return: 3 (O) AND 2 (1) AND 1 (3)

Thank you!
Marush Denchev
Reply With Quote
  #2 (permalink)  
Old 02-28-06, 11:10
hyperbole hyperbole is offline
Registered User
 
Join Date: Jan 2006
Posts: 32
use GROUP BY.



.
Reply With Quote
  #3 (permalink)  
Old 02-28-06, 16:14
macjoubert macjoubert is offline
Registered User
 
Join Date: Oct 2003
Location: Rhodesia
Posts: 28
Quote:
Originally Posted by antubis
Here is the problem

Table schema is:

ID, UID, BUILDING, TIME;

I want to count how many are rows contains some BUILDING with some value in a single query. I can`t explain it very good. See the example to understant what i want.

EXAMPLE

1, 2, 0, some time;
2, 2, 0, some time;
3, 2, 0, some time;
4, 2, 1, some time;
5, 2, 1, some time;
6, 2, 3, some time;

The query must return: 3 (O) AND 2 (1) AND 1 (3)

Thank you!
Marush Denchev
Try this
Code:
 SELECT A.BUILDING,COUNT(A.BUILDING) AS COUNTS FROM TABLE A 
     WHERE A.BUILDING NOT NULL
     GROUP BY BUILDING
     ORDER BY COUNTS DESC;
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On