MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

removing duplicate values from a table

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Database
View previous topic :: View next topic  
Author Message
mfuser
Banned


Joined: 01 Mar 2005
Posts: 105
Topics: 58

PostPosted: Mon Jul 03, 2006 7:05 am    Post subject: removing duplicate values from a table Reply with quote

Members,

I want to output all the duplicate records from a table assuming ITEMNO,ITEMNAME are character type data and ITEMQUANTITY being numeric data.Can anybody help me out in the requirement ?
Code:

INPUT

ITEMNO ITEMNAME ITEMQUANTITY
------ -------- ------------
01     A        10
01     A        10
01     A        10
02     B        20
04     C        20
04     C        30
04     C        20
06     D        40
07     C        30
06     D        40

DESIRED OUTPUT

ITEMNO ITEMNAME ITEMQUANTITY
------ -------- ------------
01     A        10
01     A        10
01     A        10
04     C        20
04     C        20
06     D        40
06     D        40
Back to top
View user's profile Send private message
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12383
Topics: 75
Location: San Jose

PostPosted: Mon Jul 03, 2006 8:14 am    Post subject: Reply with quote

mfuser,

Try this untested Sql


Code:

SELECT *
  FROM TABLE
 WHERE (ITEM_NO,ITEM_NAME,ITEM_QTY) IN (SELECT ITEM_NO
                                              ,ITEM_NAME
                                              ,ITEM_QTY
                                          FROM TABLE
                                         GROUP BY ITEM_NO
                                                 ,ITEM_NAME
                                                 ,ITEM_QTY
                                         HAVING COUNT(*) > 1)
 ;


Hope this helps...

Cheers

Kolusu
_________________
Kolusu
www.linkedin.com/in/kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Database All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group