1

假设我将这些表映射为pony.orm

class Category(db.Entity):
    threads = Set("Thread")

class Thread(db.Entity):
    category = Required("Category")
    posts = Set("Post")

class Post(db.Entity):
    thread = Required("Thread")
    timestamp = Required(datetime)

现在我想获取最新帖子订购的某个类别的所有线程:

通过这一行,我得到了最新帖子的ID,但我想要这个对象。

query = select((max(p.id), p.thread) for p in Post if p.thread.category.id == SOME_ID)
    .order_by(lambda post_id, thread: -post_id)

我当然可以[(Post[i], thread) for i, thread in query]select(p for p in Post if p.id in [i for i,_ in query])

但这会创建额外的 sql 语句。所以我的问题是:如何使用单个 sql 语句获取某个类别中所有线程的最新帖子,按该帖子的时间戳排序。

db.execute(sql)如果您不能使用 ORM,我不会使用。

4

1 回答 1

1

尝试这个:

select((p, t) for t in Thread for p in t.posts
              if p.id == max(p2.id for p2 in t.posts)
       ).order_by(lambda p, t: desc(p.id))
于 2016-07-21T23:20:43.460 回答