C# variable
string val_1 = 'A','B','C';
I pass this variable as a PL/SQL method parameter and check a value of another variable in the PL/SQL method as follows:
Procedure x(val_1 IN VARCHAR2)
IS
val_2 VARCHAR2(1):= 'A';
BEGIN
IF (val_2 IN (val_1)) THEN
dbms_output.put_line('matched');
END IF;
END;
This condition is not working. Any idea what I am doing wrong?