Article Outline
🔍 カスタムクエリ
TOC
Collection Outline
句(節)
演算子
関数
入門 @Udemy
DS100ノック
ML
アクセス解析
|| カスタムクエリ
パラメータ | 用途 |
---|---|
@DS_USER_EMAIL | ログイン ユーザーのメールアドレスを取得します。 |
-- メール パラメータの例:
select
*
from
Sales
where
sales-rep-email = @DS_USER_EMAIL
;
|
#standardSQL
SELECT
word,
word_count
FROM
`bigquery-public-data.samples.shakespeare`
WHERE
corpus = @corpus --
AND word_count >= @min_word_count --
ORDER BY
word_count DESC;
|| REFERENCE
- カスタムクエリでパラメータを使用する - Dataportal Help
- パラメータ - Dataportal Help
- パラメータ化されたクエリの実行 - Google Cloud