Joining two tables based on dates
Hi,I want to accomplish something which I think is very simple: Joining tables based on dates.Let's say I have the following tables:Table1 - which has the following columns: Group1, event_date.Table2 - which has the following columns: Group2, start_date, end_date.I want the join to work as follows: (Group1 == Group2) AND (start_date < date < end_date)How can I accomplish this using a JSL code?Than...