I use the following call for getting information from a database:
select * from submissions
where
match( description ) against ('+snowboard' in boolean mode )
and (!disabled or disabled='n')
order by datelisted desc limit 30
Which means everything with ‘snowboard' in the description is found. Now here’s the problem:
select * from submissions
where
match( description ) against ('+snowboard +mp4' in boolean mode )
and (!disabled or disabled='n')
order by datelisted desc limit 30
will ignore the +mp4 for some reason and return the same as the first querie
select * from submissions
where
match( description ) against ('+mp4' in boolean mode )
doesn't return anything, so basically it appears it's ignored in the search
Does anybody know how to work around this behavior?