Introduction to BigQuery
Matt Forrest
Field CTO
bq command line toolsLOAD DATA command in SQL


Example using the bq command line
bq load \ dataset.table \gs://mybucket/mydata.csv \--source_format=CSV \ --autodetect
An example LOAD DATA statement:
LOAD DATA INTO dataset.tableFROM FILES( uris = ['gs://mybucket/mydata.csv']format='CSV', skip_leading_rows=1 )
Using LOAD DATA
Using bq and BigQuery Studio
Introduction to BigQuery