Please tell me one thing, the documentation says that InnoDB does not support full-text search. I understand that this means the lack of support for queries like LIKE%,%, but what about the usual condition LIKE? Those. Can I send the following request to the InnoDB database:

SELECT `article` FROM `articles` WHERE `tag` LIKE 'sometag' 

Perhaps the example is not very successful, I apologize in advance.

    1 answer 1

    LIKE has little to do with full-text search. It's about Fulltext and the match function ... against

    Link - to the description of the bug. But the meaning is the same: here they use% with might and main

    • Thank you for the clarification. I just find myself never used fulltext and match O_o - Shamanis