I got a table with strings from varchar2(50) and I want to find all tuples with a name which equals to a given name.
My input part of code is
name:=&k;
(k is not declared)
but when I give a string like "Jhon" it actually uses it as value and not a string (Jhon and not 'Jhon')
so my question is how to perform a string(varchar2) input?