简单的问题,是否有任何方法可以省略PostgreSQL中的双引号?
这是一个例子,给予select * from A;,我将检索ERROR: relation "a" does not exist,我将不得不给予select * from "A";获得真实的结果.
select * from A;
ERROR: relation "a" does not exist
select * from "A";
有没有办法不做第二次而是在PostgreSQL上做第一次?
postgresql double-quotes
double-quotes ×1
postgresql ×1