I've got this Regex that works fine in all my testing, but I am unable to make it work in MySQL, despite the examples that I've been googling and trying variations of this:
^[A-Za-z]{2,4}-\d{3}-\d{2}$
In Javascript, it correctly matches AA-001-01
through ZZZZ-999-99
, and so have tried it in MySQL with various tweaks to the regex, all with no luck:
SELECT * FROM products WHERE sku REGEXP '^[A-Za-z]{2,4}-\d{3}-\d{2}$'
(The table contains thousands of records where sku
matches the samples given above)
As best as i can tell, Mysql Regex support is limited, but should this not work properly, or is there some further syntax consideration to work with Mysql?