使用psycopg2从Postgresql中基于模式的表中选择数据

时间:2019-04-24 21:53:11

标签: python python-3.x postgresql python-2.7 psycopg2

我是Python的新手,想使用python psycopg2 API从postgreSQL数据库中选择一些数据。

我选择的表位于模式dl(dl.products)内,所以当我编写代码时

Conn=   psycopg2.connect(host="localhost",database="postgres",user="postgres", password="postgres")
  Cur=conn.cursor()
  Cur.execute("select * from dl.products")

它显示错误关系dl.products不存在

任何人都可以向我展示如何执行此操作的示例吗?

1 个答案:

答案 0 :(得分:0)

请尝试以下代码,

  Query = """select * from dl."products";"""
   cursor.execute(Query)
   print("Selecting rows from test table using cursor.fetchall")
   row = cursor.fetchone()
   while row is not None:
        print(row)
        row = cursor.fetchone()
   print("Print each row and it's columns values")