Skip to content
Advertisement

google bigQuery subqueries to joins

I have the following table. basically simplified version of my table. I need to aggregate few columns, I will explain what I am trying to do and also what I have written till now.

tableName

variations can be like pizza toppings, each variation has an amount, say veggie toppings cost 10 cent and meat toppings cost 20 cents for simplicity

so now I am trying to aggregate some data for this table

I am trying to get

  • number of items printed (items where printed = TRUE)
  • number of items unprinted (items where printed = FALSE)
  • total cost of all items
  • total price of all variations
  • total number of unique baskets for a specific foodType

This is the query I have:

Now I get the result that I expect. I am trying to understand if we can do this without using subqueries and use only joins?

Advertisement

Answer

Below is for BigQuery Standard SQL and assumes that your query is really working (saying this because your data example does not exactly fit into query you provided)

So, below two subqueries

can be replace with

Believe me or not – but result will be the same

So, as you can see yo don’t need subqueries and you don’t need joins here either

Note: in the second row – (SELECT SUM(amount) FROM item.variations) is not really the same type of subquery as in your original query. Rather here for each row you query its array to find sum of amount in that row which is then being aggregated to total sum …
Hope you get it

Advertisement