postgresql
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql相关的知识,希望对你有一定的参考价值。
mysql转换postgresql
1)时间格式转换from_unixtime(timestamp,‘%Y-%m-%d‘ ) ==》
SELECT to_char(to_timestamp(t.create_time / 1000), ‘YYYY-MM-DD HH24:MI:SS‘)
2)字段拼接GROUP_CONCAT(restaurantid,‘|‘,cityid) ==》
select array_to_string(ARRAY(SELECT unnest(array_agg(restaurantid))),‘|‘,(SELECT unnest(array_agg(cityid))))
3)SELECT GROUP_CONCAT(cityid) ==》SELECT CONCAT(cityid)
4)字段含大写字母的需要加引号
5)`符号不支持
6)postgresql对类型比较敏感,不同类型不能直接做比较
本文出自 “java” 博客,谢绝转载!
以上是关于postgresql的主要内容,如果未能解决你的问题,请参考以下文章