今天碰到一个问题,由于之前是 EDB 库 现转换为 Postgres数据库 ,
postgres 没加引号的数值 它不会帮你转换;
json 类型字段 的分组 排序 需要转换一下;(纠结了半天,找不到原因,结果一看 数据字段类型才明白;)
操作时间 函数 修改 ;上一篇文章中说过;to json
test=# SELECT '{"bar": "baz", "balance": 7.77, "active":false}'::json;
- json to text
注意 json 不能进行排序 分组的;
select name :: text from table order by name