I’m trying to use a MATCH statement on a LEFT JOIN but I keep getting:
Incorrect arguments to AGAINST
This is what I am trying:
SELECT *
FROM Posts
LEFT JOIN `Follow_Searches`
ON MATCH(`Posts`.`B`) AGAINST (`Follow_Searches`.`B`)
How can this be done?
That cannot be done. From the manual:
Emphasis mine.