tags:

views:

36

answers:

2

my query is

"select * from wb_customer where ( sFullName like '%test\'s%') order by sFullName asc"

the records such as test's are store in database but still it return empty row your suggestion for this

A: 
you should use:

"select * from wb_customer where ( sFullName like '%test''s%') order by sFullName asc"
still it return empty row
praveen
A: 
try this:

 "select * from wb_customer where ( sFullName like \'%test\'s%\') order by sFullName asc"
ok i got it thanks sir
praveen