How do I create a filter where the filter values are stored in a column in another table. This is done in sql by using a sub query as shown below.
Select * from TableA where TableA.filtercolumn in (select distinct filtervalue from TableB)
How do I create a filter where the filter values are stored in a column in another table. This is done in sql by using a sub query as shown below.
Select * from TableA where TableA.filtercolumn in (select distinct filtervalue from TableB)