I know how the following work
1) select description from mytable where description LIKE "club%"
It matches rows where description has club
keyword followed by anything
e.g. clubbing or club sport
2) select description from mytable where description LIKE "%club"
It matches rows where description has club
keyword at the end of anything
e.g. cricket-club
3) select description from mytable where description LIKE "%club%"
It matches rows where description has club
keyword anywhere e.g. cricketclubdog
However, I'm working on a piece of code from another developer which uses expression like
select description from mytable where description LIKE "%youth%club%"
Does anyone know what it is supposed to match? I found one answer here at stackoverflow but it doesn't describe much - https://stackoverflow.com/a/9099684/87596