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

Count of unique rows


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

Active User


Joined: 31 Jan 2008
Posts: 148
Location: Chennai, India

PostPosted: Tue Sep 30, 2008 9:08 am
Reply with quote

Hi all,
I have table with the following colomns.
x char(10)
y char(15)

Sample rows:
x y
-- ---
12 abc
13 qwe
13 qwe
19 xyz
21 xyz
21 xyz
o/p--4

Here I want the count of unique rows of both x and y to gether.
Can any one suggest me the query?
Back to top
View user's profile Send private message
birdy K

New User


Joined: 05 Mar 2008
Posts: 72
Location: chennai

PostPosted: Tue Sep 30, 2008 10:55 am
Reply with quote

Hi,

Select x,y,count(*) from table a where not exists(select ' ' from table b where a.x=b.x and a.y=b.y having count(*) > 1) group by x,y.

But I have a doubt Why you need the count. Anyway the unique rows count will be 1. Isnt it?. Corrections are welcome.
Back to top
View user's profile Send private message
birdy K

New User


Joined: 05 Mar 2008
Posts: 72
Location: chennai

PostPosted: Tue Sep 30, 2008 11:48 am
Reply with quote

The correction in my query.
Code:

Select count(*) from table a where not exists(select ' ' from table b where a.x=b.x and a.y=b.y having count(*) > 1).

Now only understood that you need the total count of unique rows.
Back to top
View user's profile Send private message
Sachinincsc

New User


Joined: 01 Oct 2008
Posts: 11
Location: Philadelphia, USA

PostPosted: Wed Oct 01, 2008 7:39 pm
Reply with quote

SELECT COUNT(*) FROM ( SELECT DISTINCT...)

Try this..
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 Validating record count of a file is ... DFSORT/ICETOOL 13
No new posts Exclude rows with > than x occurre... DFSORT/ICETOOL 6
No new posts Insert header record with record coun... DFSORT/ICETOOL 14
Search our Forums:

Back to Top