I have a db table, say persons in Postgres passed by another command that has a column name, "first_Name" . Now I'm trying to use the PG command to query this table for this column name.
select * from persons where first_Name="xyz";
And he just returns
ERROR: column "first_Name" does not exist
Not sure if I am doing something stupid or is there a workaround for this problem that I am missing?
sql case-insensitive postgresql identifier case-sensitive
5122014009 Jan 02 '14 at 8:21 2014-01-02 08:21
source share