Google BigQuery Best Practices [draft]
Right way to explore tables in BigQuery This LinkedIn Post by Yingjun Wu ( link ) had show cased a ridiculous case of BigQuery pricing model. BigQuery charges based on the amount of data referenced, not by the amount of data processed. This means that even you used a LIMIT keyword to limit the number of rows returned, BigQuery will still charge you the amount of data query referenced. The right way to explore tables in BigQuery is to use TABLESAMPLE clause to sample the data....