My database contains a table with a field called "tag".
I'd like to get all rows where "tag" field matches "white tiger" OR "brown lion".
I tried the following syntax but not working:
SELECT * FROM mytable WHERE MATCH('@tag white tiger|brown lion');
Thankf for your help!