In Oracle, I have a table with a column (X) which can have strings like this:
97M
481
101X
88
21E
etc.
I want to select just those rows where the integral value of x > 90. In this example, I would expect to get back the rows containing values 97M, 101X and 481. How can I do this?
You can always use translate to remove alpha characters.
Translate does a 1 to 1 translation of the characters in the second argument to the characters in the third argument.
Here’s a different example.
Now if you look at my example