postgresql——内置函数

一:算术函数(数值计算)
1, + - * /
2, abs-绝对值 abs(数值)
3, mod-求余 mod(被除数,除数)
4,round-四舍五入 round(对象数值,保留小数的位数)

二:字符串函数(字符串操作)
1,||-拼接
select str1,str2 ,str1|| str2 as str_concat from 表名
2,length-字符串长度 length(字符串)
3,lower-小写转换 lower(字符串)
4,replace replace(对象字符串,替换前的字符串,替换后的字符串)
5,substring --字符串的截取 substring(对象字符串 from 截取的起始位置 for 截取的字符数)
6,upper – 大写转换 upper(字符串)

三:日期函数(日期操作)
1,current_date —当前日期
2,current_time -----当前时间
3,current_timestamp ----当前日期和时间
4,extract – 截取日期元素 extract(日期元素 from 日期)
postgresql——内置函数_第1张图片
四:转换函数(转换数据类型和值)
1,cast ----类型转换 cast(转换前的值 as 想要转换的数据类型)
2,
postgresql——内置函数_第2张图片

你可能感兴趣的:(postgresql——内置函数)