标签: python-3.x impyla
例如,某些python包(如 vertica_python )具有 iterate()的功能。 有了这个,我们可以使用逐行获取数据 表示cursor.iterated()中的行: 这对于处理数百万行的大查询非常有用 包 impyla 中是否有类似的方式?
答案 0 :(得分:0)
找到一个:
cr.execute('select * from tables') for row in cr: