本文主要是介绍【python 连接 Greenplum】python 连接Greenplum数据库,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Python和PostgrelSQL进行交互,需要安装三方库,PostgrelSQL跟mysql 的用法类似
pip install psycopg2
例子:
import psycopg2 import psycopg2.extras conn = psycopg2.connect(host='localhost', port=6432, user='postgres', password='root', database='mytest') cursor = conn.cursor(cursor_factory=psycopg2.extras.DictCursor) cursor.execute('SELECT * FROM article WHERE id = 1;') result = cursor.fetchone() print(result)
这篇关于【python 连接 Greenplum】python 连接Greenplum数据库的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!