I need some help cutting the execution time on this query. 7 seconds seems too long for a table with 1500 rows.
SELECT parent
FROM video
WHERE parent NOT IN (SELECT parent
FROM video
WHERE filename REGEXP '(s[0-9]{2}\e[0-9]{2})|([[:<:]][0-9]{3}[[:>:]])')
GROUP BY parent
parenthave an index? Using regex in a query is probably also a reason why its slow.