Well, one _ matches one character in a LIKE statement, so if you're expecting 7 numbers after 97150, you would use 7 underscores.
Alternatively, you could do some regular expression matching:
SELECT `number` FROM `myTable` WHERE `number` REGEXP '^97150[0-9]{7}$'