SQLAlchemy是一个很好的例子。对于未启动的用户,SQLAlchemy是一个ORM,并使用Python表达式生成SQL语句。在诸如
meta.Session.query(model.Theme).filter(model.Theme.id == model.Vote.post_id)
在
model.Theme.id == model.VoteWarn.post_id不返回一个布尔值,但最终能产生像SQL查询的对象
WHERetheme.id = vote.post_id。倒数会产生类似的结果,
WHERe theme.id <>vote.post_id因此需要定义两种方法。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)