postgresql 字段属性值大小写的问题

前端之家收集整理的这篇文章主要介绍了postgresql 字段属性值大小写的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

建表语句

drop table if exists table;
create table table( id SERIAL PRIMARY KEY,gmt_create timestamp without time zone,gmt_modified timestamp without time zone,baseInfo json );

搜索语句

select baseInfo from table

异常

ERROR:  column "baseinfo" does not exist
LINE 1: select baseInfo from    table
原文链接:https://www.f2er.com/postgresql/193904.html

猜你在找的Postgre SQL相关文章