I have two tables where where the join condition is an inequality
so something like
Table A:
id | size |
---|---|
a | 3 |
b | 10 |
c | 11388 |
Table B:
id | size |
---|---|
a | 2 |
b | 12 |
c | 387 |
join condition
A.id = B.id
A.size < B.size,
which should pick out b only
at the moment the join conditions in the join node are all equality, is there a simple way to inequality joins?
David