Home » Bigquery » Tutorials » Drop table

BigQuery Drop table

Deletes the table structure and the data

Drop table example

DROP TABLE mydataset.mytable

To delete a table only if the table exists

DROP TABLE IF EXISTS mydataset.mytable

Syntax reference

DROP TABLE [IF EXISTS] table_name