Barnabas
03/10/2025, 7:07 PMSELECT * FROM item i WHERE i.subsidiary LIKE '%4%' FETCH FIRST 5 ROWS ONLY;
However, it doesn’t seem to work as expected.
Could anyone clarify what data type subsidiary
is? Also, what would be the correct query to achieve this filtering?
Thanks!Jussi Penttinen
03/17/2025, 8:40 AMi.subsidiary = 4
If you want to see the text value of the list field you can use BUILTIN.DF(subsidiary) instead. You can use that in both results and filters