Let\'s say you\'re collecting insider info on upcoming superhero movie releases and your main Movie table looks something like this:
Table 1
Seeing as you only have the two fields for source data (Source and Journalist), I would recommend a meta-data table like this:
Movie DirectorSource DirectorJournalist LeadingMaleSource LeadingMaleJournalist ...
---------------------------------------------------------------------------------------
The Tick Yahoo Cameron ... ...
This will keep the less important source data out of the main table, but the queries will not get complicated and your code will be more readable.
I would only advise EAV
if ...