Create table / run DDL (Native SQL)
Native SQL — the SQL runs on the BigQuery side (server-side). Prefix with #DirectSQL to use this mode. Runs a DDL statement such as CREATE TABLE.
#DirectSQL
CREATE TABLE TestDataset.Table1 (ID INT64, Name STRING, BirthDate DATETIME, Active BOOL)