So, after messing up and testing different things, I came up with the following:
"FROM Shoe AS s LEFT JOIN Accounts AS a ON s.UserID = a.ID WHERE (MATCH (s.Brand, s.Name, s.PrimaryColor AGAINST('$Search' IN BOOLEAN MODE) OR MATCH (a.User) AGAINST('$Search' IN BOOLEAN MODE)) AND s.Publish='1' ORDER BY s.ID DESC"
It looks like I fixed my problem, which I mentioned above, now I can perform a search such as "Blue Nike", and all elements related to blue and nike will be displayed. Not sure if this is the most efficient way to do this, but it works.
SReca
source share