> ARRGGHH!! Is this a CF issue or an Access database driver issue? > > http://azarflooringgallery.com/bud.cfm > > This is a very simple, and quite standard query. > > SELECT M.*,C.* > FROM Main_Categories M LEFT OUTER JOIN Categories C on > M.Main_Category_ID = C.Main_Category_ID > > Note the Main_Category_ID is being returned with the alias in > it's name. The field is actually named Main_Category_ID
I could be wrong but I think this is happening because you are specifying all columns from M AND all collumns from C and the only way it can achieve this is to alias the duplicated name. Try SELECT * instead and see if that fixes it. -- Jay ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260847 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

