Googled and couldn't find an answer that helped. I have a table, tblSongs, that has a couple fields called "Group" and "Style". If I understand the term correctly, I would call them Lookup tables.
I haven't filled out all the "Style" entries for the Songs in tblSongs, but I want a query that returns all the records anyway. I only get records that have entries in the field "Style". How do I get all the records to show up?
Thanks!!
Matt
I haven't filled out all the "Style" entries for the Songs in tblSongs, but I want a query that returns all the records anyway. I only get records that have entries in the field "Style". How do I get all the records to show up?
Code:
SELECT tblSongs.SongID, tblSongs.Title, tblSongs.Use1, tblSongs.Tempo, tblGrouping.GroupName, tblStyles.Style, tblSongs.RevisionDate, tblSongs.Selected, tblSongs.Order
FROM tblStyles INNER JOIN (tblGrouping INNER JOIN tblSongs ON tblGrouping.GroupID = tblSongs.Group) ON tblStyles.StyleID = tblSongs.Style
ORDER BY tblSongs.Title;
Thanks!!
Matt