For questions about boolean mode search queries
Questions tagged [boolean-mode]
1 questions
0
votes
0 answers
Mariadb boolean full-text search negation logic?
When using Mariadb's FTS (full-text search), the following logic is pretty amusing:
SELECT id, first_name, last_name FROM user
WHERE MATCH (first_name, last_name) AGAINST ('-veli' IN BOOLEAN MODE);
Empty set (0.001 sec)
SELECT id, first_name,…

Roman Susi
- 4,135
- 2
- 32
- 47