Lucke
Lucke

Reputation: 221

Movilizer - queryMasterdata use of like

I have a mastedata entry like the following:

<update key="100441337" group="G1" filter1="08243"

When I execute a queryMasterdata with filter object:

"and": "op": "like" "col": "filter1" "value": "08"

It is not returning the value, anybody knows why?

Upvotes: 4

Views: 65

Answers (1)

 "value": "%08%"

... will do the trick. For like searches the % "wildcards" have to be used

Upvotes: 1

Related Questions