Is it possible to create “Insensitive Table and Column name” in PostgreSQL

旧城冷巷雨未停 提交于 2019-12-11 16:52:22

问题


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.

来源:https://stackoverflow.com/questions/23217205/is-it-possible-to-create-insensitive-table-and-column-name-in-postgresql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!