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; Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.