To match strings starting with two digits, you can use:
SELECT *
FROM yourtable
WHERE yourcolumn REGEXP '^[0-9][0-9]';
If you want to allow lines starting with 11, 12or 30, you can use this:
SELECT *
FROM yourtable
WHERE yourcolumn REGEXP '^(11|12|30)';
, , LIKE.