N78A
7 years agoContributor
Using like operator in JDBC soapui
Hi, I am trying to run below query but it does not work. select * from <table> where row_key like ':custId%' where ":custId" is parametrized to fetch the custId from excel sheet...
- 7 years ago
Problem is resolved, I used below query to use 'like' in soapui jdbc.
SELECT * FROM (SELECT * FROM <table> where row_key like concat(:custId,'%') )