- Is there a number wilcard in MySQL?
- SELECT * FROM table WHERE title LIKE '%- H(any number)'
- SELECT * FROM table WHERE title REGEXP '.*- H[0-9]+'
- SELECT * FROM table WHERE title RLIKE '- H[:digit:]{1,7}$';
- SELECT ...
- FROM table
- WHERE title REGEXP '- H([1-9][0-9]{0,6}|10000000)$'
- ;