Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

How do i pass list of values(comma separated values) through a single paramter?

user-image
Question added by Deleted user
Date Posted: 2013/11/04
Hassan Abdelwahab
by Hassan Abdelwahab , Card Projects Specialist , Abu Dhabi Islamic Bank

begin

  fLength := length(fString);

  while fPosition < fLength  Loop     fResult := substr(fString,fPosition, instr(fString,',',fPosition)-fPosition);     fPosition := instr(fString,',',fPosition) +1;       dbms_output.put_line(fResult);  end Loop;end;

More Questions Like This