通过Impyla,如何逐行获取数百万个数据?

时间:2018-03-08 10:31:04

标签: python-3.x impyla

例如,某些python包(如 vertica_python )具有 iterate()的功能。
    有了这个,我们可以使用
逐行获取数据     表示cursor.iterated()中的行:
    这对于处理数百万行的大查询非常有用     包 impyla 中是否有类似的方式?

1 个答案:

答案 0 :(得分:0)

找到一个:

 cr.execute('select * from tables')
    for row in cr: