Reputation: 1
I would like to insert/update records within Bigquery tables programmatically (either through API/SQL). Does Bigquery support this?
Upvotes: 0
Views: 3621
Reputation: 7877
It is not possible to update individual BigQuery records, but it is possible to append data to an existing table. You can insert a data load job via the API, or you can use the "bq" command line client or the BigQuery Web UI
For more info about loading data into BigQuery, see: https://developers.google.com/bigquery/loading-data-into-bigquery
Upvotes: 1