在 python 中使用 Psycopg2 模块获取数据
Fetching data using Psycopg2 module in python
虽然我正在尝试 运行 以下基本 python 脚本以使用 psycopg2 模块在 postgresql 数据库中获取数据:
cur.execute("""SELECT project from project_tlb""")
rows=cur.fetchall()
print rows[5]
我得到的上面的输出是
('html',)
table 中的值是 html 类型 'text'。关于如何仅获取值 html 而不是 ('html',) 的任何建议?
返回值 ('html',)
是一个 tuple
因此您可以只访问它的第一个元素:
rows[5][0]
得到
'html'
虽然我正在尝试 运行 以下基本 python 脚本以使用 psycopg2 模块在 postgresql 数据库中获取数据:
cur.execute("""SELECT project from project_tlb""")
rows=cur.fetchall()
print rows[5]
我得到的上面的输出是
('html',)
table 中的值是 html 类型 'text'。关于如何仅获取值 html 而不是 ('html',) 的任何建议?
返回值 ('html',)
是一个 tuple
因此您可以只访问它的第一个元素:
rows[5][0]
得到
'html'