I am new to SQL and am trying to create a procedure which takes in a 6 character string eg. 'POLICE' and then will return two substring values eg. 'POL', 'ICE'
This is what I have tried so far:
procedure split_string(inputString in string, substr1 in OUT string, substr2 in OUT string)
is
begin
substr1 := SUBSTR(inputString, 1, 3);
substr2 := SUBSTR(inputString, 4, 3);
end split_string;
However this is not working, i am also unsure on how to call this function and use its values elsewhere in the code.
Is it something like this:
split_string('POLICE') ?
Use this:
Usage:
Output