Hello
I need to build a function that returns a select with the where like clause.
P27_Tags returns %bar%
I tried:
declare
vsql varchar2 (4000);
begin
vsql: = 'select part.denumire as d, part.id_part as v from parteneri part where part.tag like' || : P27_Tags;
return vsql;
end;
.... But it does not work