我在本地计算机上安装了PostgreSQL,并在自己的数据库中创建了表。
数据库属性类似于
Name: MyDB
Tablespace: pg_default
Default tablespace: pg_default
System database? No
我的表属性看起来像
Name: mytable
Tablespace: pg_default
System table? No
但是当我尝试做的时候
select * from mytable;
我正在
ERROR: relation "mytable" does not exist
创建表语句
create table mytable (
.....
);
有什么建议吗?
答案 0 :(得分:0)
我遇到了同样的问题,很明显,如果create语句在表名周围包含双引号,你必须在select语句中使用它们来查看表(认为你是正确的用户表格上的特权)。 (即使在Windows中,它的区分大小写......)