getJsonLikeString static method
Implementation
static String getJsonLikeString(String fieldName,String jsonField,String likeValue){
String result="(";
result+="$fieldName LIKE '%\"$jsonField\":\"$likeValue%\"%'";
result+=" OR $fieldName LIKE '%\"$jsonField\":\"%$likeValue%\"%'";
result+=" OR $fieldName LIKE '%\"$jsonField\":\"%$likeValue\"%'";
result+=")";
return result;
}