建表语句
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.6miu.com/read-13011.html