I have a following table called tags like
id|tag_title|post_id and a table posts with id|title
i am able to search using fulltext functionality but that is only restricted to searching the title in the posts table.
What i want is to search both in tags and posts table and get best results .
How can i accomplish it...!!!
My query:
Select title from posts where Match(title) Against('$search' in boolean mode)