Not sure if it is possible to do with trim in a select statement:
Basically want to trim anything characters in a string BEFORE a character is found:
say there are values (names) Oliver, Dave and I want to trim all characters before ‘v’ is found so those values would be ‘ver’ and ‘ve’ afterwards
Again it kind of sounds too complicated for a trim statement unless there is an easy way to combine it with a LIKE to search for such a thing.
May be getting ahead of myself here but would be a useful thing if anyone can help enlighten it 🙂
Maybe something like
Description about REGEXP_SUBSTR: http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions131.htm
REGEXP_LIKE: http://docs.oracle.com/cd/B14117_01/server.101/b10759/conditions018.htm