I want to create a table which schema is exactly the same as another table. In other SQL engines, I think I was able to use \"CREATE TABLE my_table (LIKE your_table
To create a partitioned and/or clustered table the syntax would be:
CREATE TABLE project.dataset.clustered_table
PARTITION BY DATE(created_time)
CLUSTER BY
account_id
AS SELECT * FROM project.dataset.example_table LIMIT 0