joiner

I want to join two tables, but I can only do an equal operator on the columns.
So for example
tab1.kol1 = tab2.kol1 AND
tab1.kol2 = tab2.kol2

But what if I want to
tab1.kol1 = tab2.kol1 AND
tab1.kol2 between tab2.kol2 and tab2.kol3

Doesn’t seem too exotic :wink:

Thx,
Kr,
Piet

After join on the first criteria you will need Rule-based Row Filetr

1 Like

Thx !
I’ll give it a go.
Kr,
Piet

If you want more complex joins you could also use SQLite so you can have a lot of SQL functions without having to install a SQL database.

kn_example_sqlite_between.knwf (35.7 KB)

Thx a lot !
Kr,
piet