How to Truncate Table in BigQuery

Truncating a table is a fast way to delete all the records in the table, however it is not 100% equivalent to deleting all the records. The statement to truncate a table is:

truncate table Database_test_IB1.employee;

IN THIS PAGE