HOME/🔍 BigQuery/

🔍 カスタムクエリ

Article Outline

BigQuery

|| カスタムクエリ

パラメータ 用途
@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