Reputation: 10427
Is there an equivalent of GROUP EACH / JOIN EACH in standard SQL ? I'm exceeding my resources.
Upvotes: 1
Views: 1495
Reputation: 173171
Nope. :o(
There is no such equivalent in Standard SQL.
... EACH
was a hint for BQ Engine (Legacy SQL) to more optimally process respective command - which is already covered in Standard SQL w/o any hint'ing
Your option is to tune/optimize your query
Upvotes: 1