Hi,
I trying select records where a field contains only one character of a string of characters.
i.e.
SELECT * FROM users WHERE user_role [contains any one character from...] 'ASD'
so in this case, the query would return all records where the value of 'user_role' field is either 'A' or 'S' or 'D'.
Any ideas how can I achieve this?