Forum Discussion

N78A's avatar
N78A
Contributor
7 years ago
Solved

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...
  • N78A's avatar
    N78A
    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,'%') )