I am trying to write a BigQuery script that I can store as a procedure, I would like one of the arguments I pass to be used in the table name that is written out by the scri
Why not just use Execute Immediate with concat if you know the table schema?
concat
EXECUTE IMMEDIATE CONCAT('CREATE TABLE `', id, '` (column_name STRING)');