Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
集計関数は、合計、平均、最小値/最大値、カウントなどの計算を行うために、行間の値に対して動作します。これらの関数は 0 行以上を受け取り、単一の出力を生成します。
SELECT COUNT(*) FROM Account WHERE Industry = 'Floppy Disks'
SELECT COUNT(DISTINCT BillingState) AS DistinctValues FROM Account WHERE Industry = 'Floppy Disks'
SELECT Name, AVG(AnnualRevenue) FROM Account WHERE Industry = 'Floppy Disks' GROUP BY Name
SELECT MIN(AnnualRevenue), Name FROM Account WHERE Industry = 'Floppy Disks' GROUP BY Name
SELECT Name, MAX(AnnualRevenue) FROM Account WHERE Industry = 'Floppy Disks' GROUP BY Name
SELECT SUM(AnnualRevenue) FROM Account WHERE Industry = 'Floppy Disks'
このページは役に立ちましたか?