Code:
Tbl_A
fName
fSex
aKey
Tbl_B
fHome
fSex
bKey
These two tables are inner joined on the aKey and bKey in a view (theVue) that outputs these fields:
Tbl_A.fName, Tbl_A.Sex, Tbl_B.fHome
(The keys and tbl_B.Sex are not included in the view.)
The query is:
Code:
SELECT * FROM theVue ORDER BY tbl_A.Sex
The error is:
Code:
The multi-part identifier "Tbl_A.sex" could not be bound.
Code:
SELECT * FROM theVue ORDER BY Sex
My question is why?
If I can't find an easy answer I have a lot of "un-qualifying" to do!