I have two tables and the join between both needs to be defined by an ID and "between" clause.
I have a a.HISTORY_EFFECTIVE_DATE and a a.HISTORY_EXPIRATION_DATE on table A. And a b.DATE_COLUMN in table B. So my Join will be:
select a.col1, a.col2, b.date_column
from table1 a inner join table2 b
on
a.id = b.id
and
b.date_column between a.h_eff_dt and a.h_exp_dt
How can I translate this into the RPD? I tried and I got an error saying that it was an invalid expression.