Hi
I've the following requirement where i need to comapre 2 strings having comma separated values.
declare
v_Str1 varchar2(100) ;
v_str2 varchar2(100);
begin
v_str1 := '123,234,456' ;
v_str2 := '123,234';
/* *I need to write a logic to compare the above 2 strings
Could you please give me hint to achieve this* */
Thanks
Edited by: smile on Mar 13, 2012 8:20 PM