IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

COUNT in a query


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
tecnokrat
Warnings : 1

Active User


Joined: 22 May 2009
Posts: 160
Location: Bangalore

PostPosted: Fri Oct 15, 2010 10:08 am
Reply with quote

Hi ,
i have a requirement to get the count of the rows for whole 30 days of a month.

Below is my query to get the results for one particular day

Code:

SELECT COUNT(*)                                       
FROM TABLE1                                       
WHERE                                                 
        TAB1_COL1         = 'A'                     
AND  TAB1_MODULE     = 'PGM1'                     
AND  TAB1_ERROR       = 'CICS'                         
AND  TAB1_CRTN_TS    < '2010-09-02-00.00.00.000000'   
AND  TAB1_CRTN_TS    >= '2010-09-01-00.00.00.000000' ;

in the above query can i get a function that retrieves the details of the day1 to day 30 by tweaking it.

Please help me.
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Fri Oct 15, 2010 12:39 pm
Reply with quote

Quote:
for whole 30 days of a month
Is that for current month? Or something else??
Back to top
View user's profile Send private message
GuyC

Senior Member


Joined: 11 Aug 2009
Posts: 1281
Location: Belgium

PostPosted: Fri Oct 15, 2010 1:39 pm
Reply with quote

do you mean total of 30 days or count(*) for each day ?

Code:
select date(TAB1_CRTN_TS) ,count(*)
...
group by date(TAB1_CRTN_TS)
Back to top
View user's profile Send private message
tecnokrat
Warnings : 1

Active User


Joined: 22 May 2009
Posts: 160
Location: Bangalore

PostPosted: Fri Oct 15, 2010 4:30 pm
Reply with quote

thanks i got the output ...
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Fri Oct 15, 2010 4:55 pm
Reply with quote

Good to know you figured it out. Do you mind sharing the solution?
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts To get the count of rows for every 1 ... DB2 3
No new posts To find whether record count are true... DFSORT/ICETOOL 6
No new posts RC query -Time column CA Products 3
No new posts Validating record count of a file is ... DFSORT/ICETOOL 13
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top