GroupBy Parameter (Select-GoogleBigQuery Cmdlet)
結果セットがグループ化されるカラムのカンマ区切りリスト。
Syntax
Select-GoogleBigQuery -GroupBy string
Remarks
値を集計してsummary 関数を実行するための、カラムのカンマ区切りリストです。SQL ステートメントに使用するのと同じ構文を使って、Columns パラメータにsummary 関数を指定します。次に例を示します。
Select-GoogleBigQuery -Connection $conn -Table [publicdata].[samples].github_nested -Columns @("repository.name","SUM(repository.watchers)") -GroupBy "repository.name" -Where "repository.name = 'EntityFramework'"