简单子查询的混淆 SQLAlchemy 转换
Posted
技术标签:
【中文标题】简单子查询的混淆 SQLAlchemy 转换【英文标题】:Confusing SQLAlchemy conversion of simple subquery 【发布时间】:2020-12-01 19:20:16 【问题描述】:我一直在努力将简单的 SQL 查询简单地转换为 SQLAlchemy 表达式,但我无法让事情按照我在子查询中的意思排列。这是一个“评论”表的单表查询;我想找出哪些用户制作的第一个 cmets 最多:
SELECT user_id, count(*) AS count
FROM comments c
where c.date = (SELECT MIN(c2.date)
FROM comments c2
WHERE c2.post_id = c.post_id
)
GROUP BY user_id
ORDER BY count DESC
LIMIT 20;
我不知道如何编写子查询以使其引用外部查询,如果我这样做了,我也不知道如何将其组装到外部查询本身中。 (使用 mysql,这无关紧要。)
【问题讨论】:
我不确定这是否有帮助,但请尝试 this link 或 this official docs。 【参考方案1】:好吧,在放弃了一段时间然后回头看之后,我想出了一些可行的方法。我确信有更好的方法,但是:
c2 = aliased(Comment)
firstdate = select([func.min(c2.date)]).\
where(c2.post_id == Comment.post_id).\
as_scalar() # or scalar_subquery(), in SQLA 1.4
users = session.query(
Comment.user_id, func.count('*').label('count')).\
filter(Comment.date == firstdate).\
group_by(Comment.user_id).\
order_by(desc('count')).\
limit(20)
【讨论】:
以上是关于简单子查询的混淆 SQLAlchemy 转换的主要内容,如果未能解决你的问题,请参考以下文章
当 SQLAlchemy 决定使用带有 .limit() 方法的子查询时?