Suppose I have the following table:
col1 col2
hammet jones
jlo afflect
afflect armand
wills snopt
armand hammet
jones smith
If someone choses armand, then I'd like to return
amand hammet jones smith
The first selection goes over to the second column, gets that value
and locates it back in column one and returns column 2 and so on.
One way of doing it is to set up a separate query for each one and
then construct a new query to get them all.
I'm thinking there's a more elegant way to do this. Any suggestions
would be appreciated.
-David
col1 col2
hammet jones
jlo afflect
afflect armand
wills snopt
armand hammet
jones smith
If someone choses armand, then I'd like to return
amand hammet jones smith
The first selection goes over to the second column, gets that value
and locates it back in column one and returns column 2 and so on.
One way of doing it is to set up a separate query for each one and
then construct a new query to get them all.
I'm thinking there's a more elegant way to do this. Any suggestions
would be appreciated.
-David
Comment