Aggregate Functions
func モジュールを使用して、SQLAlchemy 内で特定の集計関数を使用することもできます。
このモジュールをインポートするには、以下を実行します。
from sqlalchemy.sql import func
func がインポートされると、次の集計機能が利用可能になります。
COUNT
以下の例では、セッションオブジェクトのquery() メソッドを使用して一連のグループのレコード数をカウントします。rs = session.query(func.count([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Id).label("CustomCount"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country) for instance in rs: print("Count: ", instance.CustomCount) print("Country: ", instance.Country) print("---------")
セッションオブジェクトのexecute() メソッドを使用してCOUNT を実行することもできます。
rs = session.execute([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.select().with_only_columns([func.count([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Id).label("CustomCount"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country])group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country)) for instance in rs:
SUM
この例では、一連のグループの数値カラムの累積を計算します。
rs = session.query(func.sum([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.AnnualRevenue).label("CustomSum"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country) for instance in rs: print("Sum: ", instance.CustomSum) print("Country: ", instance.Country) print("---------")
セッションオブジェクトのexecute() メソッドを使用してSUM を呼び出すこともできます。
rs = session.execute([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.select().with_only_columns([func.sum([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.AnnualRevenue).label("CustomSum"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country]).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country)) for instance in rs:
AVG
この例では、セッションオブジェクトのquery() メソッドを使用して一連のグループの数値カラムの平均値を計算します。rs = session.query(func.avg([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.AnnualRevenue).label("CustomAvg"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country) for instance in rs: print("Avg: ", instance.CustomAvg) print("Country: ", instance.Country) print("---------")
セッションオブジェクトのexecute() メソッドを使用してAVG を呼び出すこともできます。
rs = session.execute([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.select().with_only_columns([func.avg([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.AnnualRevenue).label("CustomAvg"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country]).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country)) for instance in rs:
MAX およびMIN
この例では、一連のグループの数値カラムの最大値および最小値を検索します。rs = session.query(func.max([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.AnnualRevenue).label("CustomMax"), func.min([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.AnnualRevenue).label("CustomMin"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer.Country) for instance in rs: print("Max: ", instance.CustomMax) print("Min: ", instance.CustomMin) print("Country: ", instance.Country) print("---------")
セッションオブジェクトのexecute() メソッドを使用してMAX やMIN を呼び出すこともできます。
rs = session.execute([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.select().with_only_columns([func.max([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.AnnualRevenue).label("CustomMax"), func.min([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.AnnualRevenue).label("CustomMin"), [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country]).group_by([AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer_table.c.Country)) for instance in rs: