Hi Everyone, I have the Data in the below structure, I just want to check A variable numbers in B variable List. If the A variable Number not found in B variable I need that non matching record in output. Sno A B 1 1 1,2,3,4,5,6,7,8,9,10 2 2 1,2,3,4,5,6,7,8,9,10 3 4 1,2,3,4,5,6,7,8,9,10 4 5 1,2,3,4,5,6,7,8,9,10 5 1,2 1,2,3,4,5,6,7,8,9,10 6 2,6 1,2,3,4,5,6,7,8,9,10 7 3,8 1,2,3,4,5,6,7,8,9,10 8 0,11 1,2,3,4,5,6,7,8,9,10 9 12,8,18 1,2,3,4,5,6,7,8,9,10 Note;- Both variables in Character. Here i am supposed to get 8th and 9th Observation in output.Please help me on this.
... View more