I am looking to create an HIVE SQL query to find all the values from table 1 that are NOT presented in table 2. I understand that I need to use a connection, but I cannot figure out how to implement it for this situation ...
Thanks James
eg:
Table1 url number xe.com 5 google.com 2 ebay.co.uk 6 Table2 url visits facebook.com 8 google.com 4 ebay.co.uk 15
So, for example, the query should return all the values from table 1 that are present in table 2, i.e.
url number visits google.com 2 4 ebay.co.uk 6 15
sql hive
user2160581
source share