Hi this might sound like a silly question and I'm not sure if there is a way to achieve this:
I have 3 tables, lets say one holds people's names, one holds color names and the 3rd table links the two. So it will say for example Joe, Jack and Jill like the colour Yellow.
if I want to query the 3rd table that only holds indexes of the other two tables, how can I sort the records alphabetically by the person's names?
so the 3rd table will look like this
Name - Color
1 --------- 3
2 --------- 3
5 --------- 3
if I order by Name, it will sort the records by their ID.
I hope that makes sense.
Any ideas?
A.