我正在尝试使用psql在我的postgresql表上执行select all并且我得到一个关系不存在错误,即使我运行\ dt表明显存在。当我进入\ d时,我得到:
public | OwnershipDocument | table | iswdp
public | OwnershipDocument_id_seq | sequence | iswdp
当我进入时:
select * from OwnershipDocument;
我明白了:
ERROR: relation "ownershipdocument" does not exist
LINE 1: select * from OwnershipDocument;
我不知道为什么这不起作用。该数据库是使用Django ORM创建的。
答案 0 :(得分:0)
select * from "OwnershipDocument"
。由于大写字符,您需要引号。