2025-08-24 13:00:53 +0000 UTC

Find Products with Valid Serial Numbers

Code

SELECT 
    *
FROM 
    Products
WHERE 
    description ~ '\mSN[0-9]{4}-[0-9]{4}\M'
ORDER BY 
    product_id ASC;