Is there a way to join two tables using the between operator (SQL). I know I can use SQLCreator but I would like to do this join directly in workbench.
sql example:
TABLE1.*,
TABLE2.*
FROM TABLE1
LEFT JOIN TABLE2
ON TABLE1.NAME = TABLE2.NAME AND TABLE1.DATE BETWEEN TABLE2.FROM AND TABLE2.TO