in reply to Re^4: Extract the odd and even columns seperately in the hash of arrays or some other data structure apart from arrays
in thread Extract the odd and even columns seperately in the hash of arrays or some other data structure apart from arrays

How many unique IDs are there in those 1 million records?


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"I'd rather go naked than blow up my ass"
  • Comment on Re^5: Extract the odd and even columns seperately in the hash of arrays or some other data structure apart from arrays

Replies are listed 'Best First'.
Re^6: Extract the odd and even columns seperately in the hash of arrays or some other data structure apart from arrays
by snape (Pilgrim) on Jan 26, 2010 at 22:40 UTC
    yeah there can be 1 million unique ids or may be there can be 500,000 ids where each id is repeated twice. In some cases I need to match the same ids also and in some cases I have to match the rows having same ids with the other rows i.e. the first row having a id 1 with first and second row having a id 2. Similarly, the second row having a id 1 with first and second row having a id 2. Thanks.