Update on join in Hive -


i'm trying understand how update column in hive table, based on id match different table. is, have table 'users', columns 'uid' (string), 'isverified' (boolean) , lot more columns. have second table 'users_verified', 1 column 'uid' (string). i'm trying effect of

update users set isverified = 1  uid in (select uid users_verified); 

however neither nor update on join queries seem supported hive, , seems need use insert overwrite statement instead. can give me example of how might work?


Comments

Popular posts from this blog

4x4 Matrix in Python -

python - String indices must be integers and while issue -

python - PyInstaller UAC not working in onefile mode -