Search syntax for FULLTEXT index column
MATCH
and
AGAINST
keywords are used for searching in columns with
FULLTEXT
index. Searches in
first_name
column with
გიორგი
keyword
SELECT * 
FROM students 
WHERE MATCH(first_name) AGAINST('გიორგი')
by Valeri Tandilashvili
4 years ago
MySQL
FULLTEXT index
1
Pro tip: use ```triple backticks around text``` to write in code fences