How to Drop a Table in BigQuery

To drop a table, just do:

drop table Database_test_IB1.employee;

If the table doesn’t exist the drop will fail, in order to avoid this potential error you can use:

drop table if exists Database_test_IB1.employee;

IN THIS PAGE