Is it possible to create “Insensitive Table and Co

2019-09-07 07:12发布

问题:

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.