I wanted to select sub sets with match against
SELECT * FROM (
SELECT * FROM Movie WHERE
MATCH(keywords) AGAINST('$mk')
)
WHERE MATCH(genres) AGAINST('$mg')
$mk may be "action,thriller" $keywords may be "hero,guns,forest"
That doesn't seem to work or i may bee doing something wrong..
Both queries return values. When i combine match against queries with AND operator it also works.
i am trying to achive is to get a set from movies according to keywords then get a set from this subset with matching genres.. and if possible this will go on for some more keys..
Or is there a better, faster, more modular solution to this? I am having difficulty in understanmding joins i think they may be a better solution but i don't know..
Regards