Questions tagged [non-equi-join]

Non-equi-join is a join using non-equality binary relational operator such as (<, ≤, ≠, >, ≥) . Also known as a Non-equi Theta-Join. Theta join combines tuples from different relations provided they satisfy the theta condition. General form of theta-join can use use all kinds of comparison operators (<, ≤, =, ≠, >, ≥) Both equi-join (join using = operator) and non-equi-join are subsets of general form on Theta-join.

More info about non-equijoin on w3resource.com

46 questions
0
votes
1 answer

How to join exclusively by date range in Hive SQL?

I have two subqueries that i'd like to join only by the date range between open and closed date from the first table. First table example: | id_original | open_datetime | close_datetime …
1 2 3
4