Hi,
I have data from table which i want to store in a data structure. The data is as follows:
ab, 2
ab, 3
ab, 4
cd, 10
cd, 23
cd, 15
cd, 16
ef, 5
ef, 6
ef, 11
ef, 12
ef, 51
I want it in a data structure as follows:
ab 2, 3, 4
cd 23, 15, 16
ef 5, 6, 11, 12, 51
I have to pass ab and 2,3,4(in array) as parameters to another program. Can you tell me how I can do it. Thanks
I have data from table which i want to store in a data structure. The data is as follows:
ab, 2
ab, 3
ab, 4
cd, 10
cd, 23
cd, 15
cd, 16
ef, 5
ef, 6
ef, 11
ef, 12
ef, 51
I want it in a data structure as follows:
ab 2, 3, 4
cd 23, 15, 16
ef 5, 6, 11, 12, 51
I have to pass ab and 2,3,4(in array) as parameters to another program. Can you tell me how I can do it. Thanks