I want to write a query to search in multiple tables (news, articles, projects, files)
While searching I found this
SELECT title, post FROM news WHERE MATCH (title,post) AGAINST ('press');
I tested it and it's working, but i failed to extend this to multiple tables.
How to write one query that return me search results for multiple tables ?