Database 3415. Find Products with Three Consecutive Digits ¶ SQL 1 2 3 4 5 6 7SELECT product_id, name FROM Products WHERE name REGEXP '[^0-9][0-9]{3}[^0-9]' OR name REGEXP '^[0-9]{3}[^0-9]' OR name REGEXP '[^0-9][0-9]{3}$' ORDER BY 1;