I have a list of tag_ids configured with the test_id_val in a table.I retrieve the Data using the following query
Select test_id_val , tag_id from p_details
For a straightforward case i would rather use a hash map to store key value pair and retrieve the data,But in my case the test_id_val can accept null values
For ex consider the following structure :
1. APP TR202
2. APP TR204
3. APP TR205
4.NULL TR206
5.NULL TR207
6.NULL SM504
7.NULL SM505
So i will be having a list of tag_ids values to map to a test_id key which can either be null or contain values.My requirement is to map the test_id key to the list of tag_ids
Is there a specific way to do this?
Thanks for the help and time..