So, I have a scenario where I have an article that I want to be filtered based on two other articles in the publication. If I were to write this as T-SQL, it'd be:
select t3.*
from t3
inner join t2
on t3.t2_id = t2.t2_id
inner join t1
on t3.t1_id = t1.t1_id
Looking at sp_addmergefilter
, it accepts a parameter called @join_articlename
which implies that you can only join to one table at a time. Is there a way to accomplish what I'm trying to do? Thanks in advance.