MINUS functionality in BigQuery database -


i new bigquery database.

like in oracle database minus operator same functionality in bigquery? did not find minus operator in bigquery.

oracle --> minus
bigquery --> ??

though there no minus function in bigquery, can use left outer join alternative.

 select name, uid  minus  select name, uid b 

can written as:

select a.name, a.uid left outer join b on a.name= b.name , a.uid= b.uid b.name null 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -