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

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

java - Getting exception in JDBC thin driver -