Pergunta

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?

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top