📜  将所有记录作为 Row 列表返回 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:33.359000             🧑  作者: Mango

代码示例1
# Returns all the records as a list of Row

df.collect()
# [Row(age=2, name=u'Alice'), Row(age=5, name=u'Bob')]