Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. SELECT
  2. id,
  3. sample_repo_name,
  4. SPLIT(content, '\n') line,
  5. FROM
  6. [bigquery-public-data:github_repos.sample_contents]
  7. WHERE
  8. (sample_path LIKE '%.html'
  9. OR sample_path LIKE '%.json'
  10. OR sample_path LIKE '%.js')
  11. AND NOT binary
  12. HAVING (line CONTAINS 'semantic.js' OR line CONTAINS 'semantic.min.js' OR line CONTAINS 'semantic-ui-css'
  13. OR line CONTAINS 'semantic-ui.js'
  14. OR line CONTAINS 'semantic-ui-less'
  15. OR line CONTAINS 'less-plugin-semantic-ui'
  16. OR line CONTAINS 'semantic-ui-ember'
  17. OR line CONTAINS 'semantic:ui'
  18. OR line CONTAINS 'semantic:ui-css'
  19. ) IGNORE CASE;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement