CData Python Connector for SurveyMonkey

Build 24.0.9060

Aggregate Functions

Certain aggregate functions can also be used within SQLAlchemy by using the func module.

To import this module, execute:

from sqlalchemy.sql import func

Once func is imported, the following aggregate functions are available:

COUNT

The following example counts the number of records in a set of groups using the session object's query() method.
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("---------")

You can also execute COUNT using the session object's execute() method:

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:

SUM

This example calculates the cumulative amount of a numeric column in a set of groups.

rs = session.query(func.sum(MySurvey_Responses.Size).label("CustomSum"), MySurvey_Responses.RespondentId).group_by(MySurvey_Responses.RespondentId)
for instance in rs:
	print("Sum: ", instance.CustomSum)
	print("RespondentId: ", instance.RespondentId)
	print("---------")

You can also invoke SUM using the session object's execute() method.

rs = session.execute(MySurvey_Responses_table.select().with_only_columns([func.sum(MySurvey_Responses_table.c.Size).label("CustomSum"), MySurvey_Responses_table.c.RespondentId]).group_by(MySurvey_Responses_table.c.RespondentId))
for instance in rs:

AVG

This example uses the session object's query() method to calculate the average amount of a numeric column in a set of groups:
rs = session.query(func.avg(MySurvey_Responses.Size).label("CustomAvg"), MySurvey_Responses.RespondentId).group_by(MySurvey_Responses.RespondentId)
for instance in rs:
	print("Avg: ", instance.CustomAvg)
	print("RespondentId: ", instance.RespondentId)
	print("---------")

You can also use the session object's execute() method to invoke AVG:

rs = session.execute(MySurvey_Responses_table.select().with_only_columns([func.avg(MySurvey_Responses_table.c.Size).label("CustomAvg"), MySurvey_Responses_table.c.RespondentId]).group_by(MySurvey_Responses_table.c.RespondentId))
for instance in rs:

MAX and MIN

This example finds the maximum value and minimum value of a numeric column in a set of groups.
rs = session.query(func.max(MySurvey_Responses.Size).label("CustomMax"), func.min(MySurvey_Responses.Size).label("CustomMin"), MySurvey_Responses.RespondentId).group_by(MySurvey_Responses.RespondentId)
for instance in rs:
	print("Max: ", instance.CustomMax)
	print("Min: ", instance.CustomMin)
	print("RespondentId: ", instance.RespondentId)
	print("---------")

You can also use the session object's execute() method to invoke MAX and MIN:

rs = session.execute(MySurvey_Responses_table.select().with_only_columns([func.max(MySurvey_Responses_table.c.Size).label("CustomMax"), func.min(MySurvey_Responses_table.c.Size).label("CustomMin"), MySurvey_Responses_table.c.RespondentId]).group_by(MySurvey_Responses_table.c.RespondentId))
for instance in rs:

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060