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.