I'm trying to get results from this query
But I get this error
When I put only one column in MATCH it is working, two or more columns within MATCH doesn't work. I've seen people are doing it.
Code:
SELECT ID FROM table1 WHERE MATCH(column1, column2) AGAINST ('text')
Code:
#1191 - Can't find FULLTEXT index matching the column list
Comment