我有python PostgreSQL的問題。我正在使用psycopg2。 這裏是我的Postgres數據庫的樣子:未能使用psycopg2從postgre數據庫中提取數據
Database: qcdata
---information_schema
---pg_catalog
---prod
---activation
--- *** Many other table ***
---public
我要拉出來在架構中的信息:PROD - 表:這裏激活
是我的代碼
import psycopg2
conn = psycopg2.connect(host='10.0.80.180', port = '5432',
dbname = 'qcdata',
user = 'username', password = 'pwd')
cur = conn.cursor()
print cur.execute("SELECT * FROM prod.activation")
但它返回無..我確信裏面有數據。那怎麼可能? 謝謝你們。