Home » Bigquery » Tutorials » Drop table

BigQuery Drop table

Deletes the table structure and the data

Drop table example

DROP TABLE mydataset.mytable
\n

To delete a table only if the table exists

\n
DROP TABLE IF EXISTS mydataset.mytable

Syntax reference

DROP TABLE [IF EXISTS] table_name