I have a locally defined table with attributes which may contain several values. I define each attribute /value pair as a new entry in the table then use avp_load to retrieve these values from the database. The problem is that I don't know how to retrieve the values in a specific order. For example if I have a=1, a=2, a=3 when I load the values for "a" they may be 2,1,3 or 3,1,2, etc. Is there any way to force loading in a specific sequence.
 
Thanks,Steve