ProgrammingError:关系“用户”不存在 - PostgreSQL

时间:2017-05-25 10:38:03

标签: python sql postgresql psycopg2

刚开始使用postgreSQL和Python。我试图使用'psycopg2'库执行查询,但我收到以下错误:'ProgrammingError:relation“users”不存在'

在我的pSQL cmd行中,我可以看到我的'用户'表全部小写,没有大写,所以不确定发生了什么..我将在下面粘贴我的查询。提前感谢您的帮助!

conn = psycopg2.connect(host="127.0.0.1", database="test", user="postgres", password="password")
    cur = conn.cursor()
    cur.execute('SELECT * FROM users WHERE username = %s AND password = %s', (username, password))

请注意 当我运行\ dt时,我得到以下

         List of relations
 Schema | Name  | Type  |  Owner
--------+-------+-------+----------
 public | users | table | postgres

1 个答案:

答案 0 :(得分:-1)

这一次发生在我的工作上,我得知您可能应该尝试以下操作:

python manage.py makemigrations,然后是python manage.py migration。就我而言,没有要进行的迁移,但是它已解决了几次“不存在关系”的问题!