I'm aware of the fact that we can run parameterized queries in BQ CLI. Below is the working example taken from Big query documentation:
bq query --use_legacy_sql=False \
--parameter=corpus::romeoandjuliet \
--parameter=min_word_count:INT64:250 \
'SELECT word, word_count
FROM `bigquery-public-data.samples.shakespeare`
WHERE corpus = @corpus
AND word_count >= @min_word_count
ORDER BY word_count DESC;'
This way for every parameterized query we need to pass the parameters within the query execution statement itself. Suppose, if I have 'n' number of queries to be executed one after another. In that case is there any way to set the parameter values once. In all the following queries the same parameter values should be reflected. Any leads will be appreciated.