Question: I'm having a problem using RLIKE and searching for a hyphen '-' , within a string.Also some other problems related to identifying strings with both character and numeric , while excluding numeric only or letters only strings. These are some examples of the strings: Example 1 : Digit followed by letter – 12B, 110A , 78B, 2150A, 287H, 941C Example 2: Numbers or numbers/letter with hyphen separator eg 61-63, 98-99, 1-33,2-14,1A-2A,169-173 Example 3: Numbers with forward slash separator e.g 1B/32,142/8 ,336C/2 Could you give me some RLIKE examples for each of the above scenarios Answer: The following are simple... Read more →