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
\nDROP TABLE IF EXISTS mydataset.mytable
Syntax reference
DROP TABLE [IF EXISTS] table_name