I am working on PostgreSQL 9.2 and i want to create a table with capital letter without using double quotes.Is it possible by any how? means
CREATE TABLE STUDENT(NAME VARCHAR(50));
i want the table name must be look like "STUDENT" But postgresql automatically convert it into "student". So is there any way exist to disable sensitive property of postgresql for column and table names? thank you.