Here is the scenario I'm trying to link 3 tables in a view:
Students that are applying to live on this college campus are included in a table I have. Another table in my database contains the three hall preferences for each student. However, each of these preferences is only an ID Number, and in a third table, the ID Number corresponds to a Hall Name (did not design this database...).
I basically have an INNER JOIN on the table containing their information and preferences, and the outcome is...
John Doe | 923423 | Incoming Student | 005
Where 005 would be the HallID. So Now I want to match that HallID to a third table, where this table contains a HallID and HallName.
So pretty much, I want my result to be like...
John Doe | 923423 | Incoming Student | Foley Hall <---(INSTEAD OF 005)
Can someone please help me solve this?