in reply to Remove Duplicates!! Please Help

You probably should do this by using a hash, but since the two items to which you refer are NOT "duplicates," perhaps you could clarify a bit.

Update: lagged again. s/using a hash,/using a hash, perhaps as above,/

Replies are listed 'Best First'.
Re^2: Remove Duplicates!! Please Help
by davidrw (Prior) on Jan 03, 2008 at 15:54 UTC
    OP said "I want to remove duplicate entries for one single instance of COMPUTER column." So, for OP's purpose's, the two items are dups -- both have the first (Computer) column value of '30F-WKS' .. which leads right into to your comment of needing a hash (e.g. see the one-liner solutions)