I am developing a database of songs. I have given each song a Theme as I want to be able to search through the database and find all songs that match Theme 1. I would then like to be able to add a second Theme to each song and then search for all songs that meet the first criteria or the second. For example,
Table 1:
Holiness
Grace and Mercy
Peace (etc)
Table 2 is the same, so that song 1 could be about Holiness and Grace (in Table 1) and Mercy (in Table 2).
I have created these tables and a basic Query, but this only allows me to search for records from 1 table. In SQL View it is:
I hope you follow what I am trying to say.
Table 1:
Holiness
Grace and Mercy
Peace (etc)
Table 2 is the same, so that song 1 could be about Holiness and Grace (in Table 1) and Mercy (in Table 2).
I have created these tables and a basic Query, but this only allows me to search for records from 1 table. In SQL View it is:
Code:
SELECT tblSongTheme.Theme, tblSongs.[First Line] FROM tblSongTheme INNER JOIN tblSongs ON tblSongTheme.ID = tblSongs.Theme WHERE (((tblSongTheme.Theme)="holiness"));
Comment