Where the value does not match a string containing something that is not a letter or number:
WHERE F NOT LIKE '%[^A-Z0-9]%'
(These are patterns, not Regular Expressions)
Where the value does not match a string containing something that is not a letter or number:
WHERE F NOT LIKE '%[^A-Z0-9]%'
(These are patterns, not Regular Expressions)