我想通过使用过滤数据的列通过filter_by和order_by调用查询。请告诉我如何做到这一点。
current_blog_post_replies = current_blog_post_reply.filter_by(blog_reply = blog_post_id)
现在,我想通过名为time的列对这个查询进行order_by。请告诉我怎么做?
答案 0 :(得分:0)
我假设您的表类名为 CurrentBlogPostReply 。
使用此查询
current_blog_post_replies = CurrentBlogPostReply.query.filter(CurrentBlogPostReply.blog_reply == blog_post_id).order_by(CurrentBlogPostReply.time).all()