Other SQL Clauses
SQLAlchemy ORM は、ORDER BY、GROUP BY、LIMIT、OFFSET などSQL の他の句のサポートも公開しています。これらはすべて、このコネクタでサポートされています。
ORDER BY
以下の例は、セッションオブジェクトのquery() メソッドを使用して指定したカラムでソートします。rs = session.query(NorthwindProducts).order_by(NorthwindProducts.Price) for instance in rs: print("Id: ", instance.Id) print("PartitionKey: ", instance.PartitionKey) print("Name: ", instance.Name) print("---------")
セッションオブジェクトのexecute() メソッドを使用してORDER BY を実行することもできます。次に例を示します。
rs = session.execute(NorthwindProducts_table.select().order_by(NorthwindProducts_table.c.Price)) for instance in rs:
GROUP BY
以下の例では、セッションオブジェクトのquery() メソッドを使用して指定したカラムを持つレコードをグループ化します。rs = session.query(func.count(NorthwindProducts.Id).label("CustomCount"), NorthwindProducts.PartitionKey).group_by(NorthwindProducts.PartitionKey) for instance in rs: print("Count: ", instance.CustomCount) print("PartitionKey: ", instance.PartitionKey) print("---------")
セッションオブジェクトのexecute() メソッドを使用してGROUP BY を実行することもできます。
rs = session.execute(NorthwindProducts_table.select().with_only_columns([func.count(NorthwindProducts_table.c.Id).label("CustomCount"), NorthwindProducts_table.c.PartitionKey]).group_by(NorthwindProducts_table.c.PartitionKey)) for instance in rs:
LIMIT およびOFFSET
以下の例では、セッションオブジェクトのquery() メソッドを使用して最初の100レコードをスキップし、次の25レコードをフェッチします。rs = session.query(NorthwindProducts).limit(25).offset(100) for instance in rs: print("Id: ", instance.Id) print("PartitionKey: ", instance.PartitionKey) print("Name: ", instance.Name) print("---------")
セッションオブジェクトのexecute() メソッドを使用してLIMIT またはOFFSET を設定することもできます。
rs = session.execute(NorthwindProducts_table.select().limit(25).offset(100)) for instance in rs: