Hi
Lets say the result of a query is a table like below:
A B
1 Name1
2 Name2
generally selecting results[0].A will give me "1" and results[0].B will give me "Name1" and so on.
But is it possible to disply values of B using values of A. like trying results.A["1"] so that i can get Name1