Podrías usar un NOT EXISTS
con un VALUES
construir para todos sus prefijos.
Algo como esto:
SELECT *
FROM mytable mt
WHERE NOT EXISTS (SELECT 1
FROM (VALUES('30%'),('50%'),('1X%'),('2X%')/*,...*/)V(expr)
WHERE mt.id LIKE V.expr);