PostgreSQL converts everything to lowercase.
If you ask for this:
CREATE TABLE People
{
id SERIAL,
Att1 varchar(100)
};
SELECT Name FROM People;
You should get all the information because pgsql converts it to
CREATE TABLE people
{
id SERIAL,
att1 varchar(100),
};
SELECT name FROM people;
pgAdmin , sucessfull, :
SELECT "Att1" FROM people