I have a table with products
| Id | product |
| -- | ----------------- |
| 1 | red t-shirt |
| 2 | white sweat-shirt |
| 3 | nice tee-shirts |
| 4 | tactac badadoum |
I'm using this query:
`SELECT Id, product FROM mytable WHERE MATCH(product) AGAINST ('tee-shirt*' IN BOOLEAN MODE)`
It returns the 3 first rows but I was expecting it returns only rows 1 and 3.
I would like it returns only results starting with 't-shirt', 'tee-shirt', ... but not results with characters preceding these words. Is it possible ?
(I'm using MySQL 5.7)