Heroku PostrgreSQL client doesn't find relatio

2019-08-31 02:18发布

I am using Heroku and his PostgreSQL addon. When I login to pg:psql and do:

SELECT table_name FROM information_schema.tables WHERE table_schema='public';

I see all my tables:

Users
Cities
Registrations

Which is expected.
But when I do:

select * from users;

Result is :

ERROR:  relation "users" does not exist
LINE 1: select * from users;

Does anyone knows what am I doing wrong?

1条回答
▲ chillily
2楼-- · 2019-08-31 02:59

Classic problem with mixed case identifiers.

Try:

select * from "Users";

Read the chapter Identifiers and Key Words in the manual.
To make your life easier only use legal, lower case identifiers, or you have to double-quote the names.

查看更多
登录 后发表回答