You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH
BASE AS (
SELECT
_PARTITIONTIME as __PARTITIONTIME
, #... FROM
mytable
)
, AGG AS (
SELECT
__PARTITIONTIME
, # ... FROM
BASE
GROUP BY
__PARTITIONTIME, # ...
)
SELECT*FROM
AGG
WHERE
__PARTITIONTIME =TIMESTAMP("2017-10-01") -- 擬似列を利用しスキャン量が抑えられる
シャーディング用のワイルド―カードにおけるプルーニング
クラスタリングインデックスにおけるプルーニング
The text was updated successfully, but these errors were encountered:
BigQuery の 分割テーブル について
BigQueryにおいてはスキャン量を削減する仕組みとして分割テーブルが存在する。
パーティションのプルーニングに関する機能
パーティションカラムに対するプルーニングの評価
SELECT式におけるGROUP BY
-疑似カラムに対する計算
ViewやTVFにおいてもパーティションの機能
The text was updated successfully, but these errors were encountered: