Unable to pre-filter lists with condition 'IN'

AlexTCGPro

Member
Hey there.
I´m trying to use pre-filters on a list, the element is raw numbers, the condition is IN and the value is "SELECT id FROM fabrik_list_test WHERE testing = 1", when I go see the result it always returns "Column 'id' in IN/ALL/ANY subquery is ambiguous". I do need to use id as that's where it matches, what am I doing wrong?
 
Use a table alias:
value is "SELECT flt.id FROM fabrik_list_test flt WHERE flt.testing = 1"
 
SELECT flt.id FROM fabrik_list_test flt WHERE flt.testing = 1
Did you use all of these?
Is the error really coming from the prefilter?
 
I was able to fix it, the issue was not in the pre-filter but in one of the elements of my table, it has many table joins, I just had to add "{thistable}." before every time I refer to an element of itself. Thank you for your help!
 
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top