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
Deletes the table structure and the data
DROP TABLE mydataset.mytable
To delete a table only if the table exists
DROP TABLE IF EXISTS mydataset.mytable
DROP TABLE [IF EXISTS] table_name