Google BigQuery Delete Rows?

前端 未结 6 1281
挽巷
挽巷 2020-12-03 01:25

Anyone know of any plans to add support for delete parts of data from a table in Google Bigquery? The issue we have right now is we are using it for analytics of data point

6条回答
  •  醉话见心
    2020-12-03 01:54

    #standardSQL If you want to delete all the rows then use below code

    delete from `project-id.data_set.table_name` where 1=1;
    

    If you want to delete particular row then use below code.

    delete from `project-id.data_set.table_name` where (your condition)
    

提交回复
热议问题