If I make a like query as below:
SELECT style, description FROM parent_products WHERE description LIKE ('01940E1%');
then result I get is a single row with two fields which is working as expected
style: 01940E1
description: 01940E1 TShirt TShirts Alternat Alternative
However, when I do full text search on it
SELECT style, description FROM parent_products WHERE MATCH(description) AGAINST ("01940E1" IN BOOLEAN MODE)
I am not getting any results.
Note: I am using AWS Serverless Aurora - MySQL