how can i retreiving '_'(under score )from the database ? plz help with this.
--------------------
suresh
how can i retreiving '_'(under score )from the database ? plz help with this.
--------------------
suresh
Please check this sample code
hope that solves your problem.Code:select * from emp where ename like '%\_%' escape '\';
yes it is working fine...Thanks debasisdas.
In place of using \ we can use any other character as the escape .
The only restriction is that escape character can't be used in the search criteria.