In running the following query, I get a ton of results:
SELECT DISTINCT item, category
FROM productdata
WHERE item
ORDER BY item;
However, I'm trying to use the following Regexp:
SELECT DISTINCT item REGEXP "[a-mA-M].*", category
FROM productdata
WHERE item
ORDER BY item;
... in order to only display the Items which start with the letters A through M.
I've tried numerous different regexp formats, but no luck.
Any ideas why this wouldn't be working ?
TIA !