Re: NOT IN clause in Hive

2012-08-14 Thread hj g
maybe like this: select buyerid from (select buyerid ,sellerid from transation left out join transation on buyerid=sellerid group by buyerid ,sellerid) where sellerid is null 2012/8/14 Prakrati Agrawal > Dear Phil, > > Can you be a liitle more specific about using the left outer join? > > Tha

Re: NOT IN clause in Hive

2012-08-14 Thread hj g
maybe like this: select * from (select buyerid ,sellerid from transation left out join transation on buyerid=sellerid group by buyerid ,sellerid) where sellerid is not null 2012/8/14 Prakrati Agrawal > Dear Phil, > > Can you be a liitle more specific about using the left outer join? > > Thank