December 2017
Beginner to intermediate
264 pages
5h 38m
English
The OMIT RECORD IF option is used for filtering out values based on the aggregation of the repeated field. The following query returns the names of the repositories that have more than 100 programming languages used in that repository:
#legacySQLSELECT repo_nameFROM [bigquery-public-data:github_repos.languages] OMIT RECORD IF COUNT(language.name) < 100
Read now
Unlock full access