Using Oracle 9i. I have a function such as:
CREATE OR REPLACE FUNCTION TEST_FUNCTION(
p_string VARCHAR2)
RETURN NUMBER
The string being passed could be:
1111 222 3333 or
1111 2222 3333
meaning the second set of numbers (the 2's) could be 3 or 4 characters in length.
I need to parse this string into 3 seperate fields to use in my select statement.
Thanks
CREATE OR REPLACE FUNCTION TEST_FUNCTION(
p_string VARCHAR2)
RETURN NUMBER
The string being passed could be:
1111 222 3333 or
1111 2222 3333
meaning the second set of numbers (the 2's) could be 3 or 4 characters in length.
I need to parse this string into 3 seperate fields to use in my select statement.
Thanks