I'm trying to build a query which matches the rows following these rules :
- my rows contents ids like 'MATCH_1', 'MATCH_2', 'MATCH_4'...
- I want to match the rows which id is between 2 boundaries: SELECT id FROM table WHERE id LIKE "MATCH_%", % must be between 2 and 5 for example. The result must be : 'MATCH_2', 'MATCH_4', 'MATCH_5'
Is it possible to do so ?
Thanks
MATCH_10is not betweenMATCH_1andMATCH_2, is it?