I got 3 tables that have stored common data from registration from users: languages, countries, nationalities. Each table have fields: id and name.
I got a main table users where it stores almost all the data from the users.
Another table called tableregistry which it has this structure:
id | tableName | tableValue
1 | finalJoin | 0
2 | language | 1
3 | country | 2
4 |nationality| 3
And one more that it stores called coincidences the common data that share many of the users:
id | idUser | nTable | cValue
So if we have the 80th user taht live in Netherlands but he's native from Peru and speak Chinesse the data would save in this way (considering Netherlands have the id 20 in the country table, the peruvian nationality have id 34 in the nationality table and the chinese language have the id 22 on the language table)
198 | 80 | 2 | 20
199 | 80 | 3 | 34
200 | 80 | 1 | 22
So if we want to perform a search of persons i use a stored procedure to search on coincidences the common data just getting 3 temporary tables to get users 1.from certain country 2.taht live on any country than not be the native and 3.speak a certain language.
Doing a multiple join for these temporary tables with the table users we would get a list of users for this search.
The question is. Would be better use a view or just keep the temporary table strategy?