SQLObject sql到python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLObject sql到python相关的知识,希望对你有一定的参考价值。
# select distinct author from blogtable where keyword = "dust"; class Blog(SQLObject): class sqlmeta: table = 'blogtable' author = StringCol() keyword = StringCol() Blog.select(Blog.q.keyword=='dust', distinct=True) Version 2 select = Select( [Blog.q.author], Blog.q.keyword=='dust', distinct=True, ) sql = connection.sqlrepr(select) for author in connection.queryAll(sql): print author
以上是关于SQLObject sql到python的主要内容,如果未能解决你的问题,请参考以下文章
可以通过自定义 SQLObject Select 调用获得生成器吗?