hi! first post here so forgive me
I have a query to get a list of data for a specific organisation in my DB. That is successful and returns data. I then use a field from that to query another table to find all matching rows and return the org_id.
This query should return 4 rows and it just returns 1.
select org_id from organisations_custom_fields where field_value={{orgValues.data.sf_accountid}};
This query returns all 4 if i replace the value with the actual id (clearly not it below)
select org_id from organisations_custom_fields where field_value='0019000000xixxxxxxx';
any ideas why it would not be returning the multiple rows??