Database 3465. Find Products with Valid Serial Numbers ¶ SQL 1 2 3 4 5 6SELECT product_id, product_name, description FROM Products WHERE description REGEXP 'SN[0-9]{4}-[0-9]{4}$' OR description REGEXP 'SN[0-9]{4}-[0-9]{4}[^0-9]+' ORDER BY 1;