2
我有以下代碼:SQLAlchemy的選擇不同
session = Session()
query = session.query('count').from_statement(
"""
SELECT COUNT(DISTINCT autoresponder.campaign_id) as count
FROM autoresponder
WHERE autoresponder.account_id=:account_id AND autoresponder.is_active='t'
"""
).params(account_id=account_id).all()
print query[0].count
但我想了解SQLAlchemy的更好,希望上面的SQL語句轉換成SQLAlchemy的ORM的對象,只是返回不同的行計數。