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