I want to use a query like:
select * from test
where data in the column has alphanumeric values.
e.g. if column rollno has values like 20,30,40,50C,30F, then how do I find the values which have 50C and 30F types of values?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your data is varchar2 and you want to validate it against a pattern, you can use the REGEXP_LIKE function
For instance, to select the fields that are digits followed by non digit characters, you can use:
From your list, this will return 50C and 30F