You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
736 B

  1. [
  2. "SELECT * FROM `nyc-tlc.yellow.trips` LIMIT 10000",
  3. "SELECT * FROM `nyc-tlc.yellow.trips` LIMIT 100000",
  4. "SELECT * FROM `nyc-tlc.yellow.trips` LIMIT 1000000",
  5. "SELECT title FROM `bigquery-public-data.samples.wikipedia` ORDER BY title LIMIT 1000",
  6. "SELECT title, id, timestamp, contributor_ip FROM `bigquery-public-data.samples.wikipedia` WHERE title like 'Blo%' ORDER BY id",
  7. "SELECT * FROM `bigquery-public-data.baseball.games_post_wide` ORDER BY gameId",
  8. "SELECT * FROM `bigquery-public-data.samples.github_nested` WHERE repository.has_downloads ORDER BY repository.created_at LIMIT 10000",
  9. "SELECT repo_name, path FROM `bigquery-public-data.github_repos.files` WHERE path LIKE '%.java' ORDER BY id LIMIT 1000000"
  10. ]