gpt4 book ai didi

python :MYSQLdb。如何在不执行 select * 在大表中获取列名?

转载 作者:IT王子 更新时间:2023-10-29 00:38:33 26 4
gpt4 key购买 nike

我想获取一个表的列名,但其中有超过一百万的数据。所以我不能使用:

cursor.execute("SELECT * FROM table_name")
print cursor.description

在 sqlite3 中,我是这样做的

crs.execute("PRAGMA table_info(%s)" %(tablename[0]))
for info in crs:
print info

但这在 python mysqldb 中不起作用。有人知道怎么做吗?

最佳答案

您可以使用 SHOW columns :

cursor.execute("SHOW columns FROM table_name")
print [column[0] for column in cursor.fetchall()]

仅供引用,这与使用 desc 基本相同:

cursor.execute("desc table_name")
print [column[0] for column in cursor.fetchall()]

关于 python :MYSQLdb。如何在不执行 select * 在大表中获取列名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23786674/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com