入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

postgre函数整理

创建时间:2016-11-09 投稿人: 浏览次数:425

postgre 函数整理

COALESCE

COALESCE (expression_1, expression_2, ...,expression_n)依次参考各参数表达式,遇到非null值即停止并返回该值。如果所有的表达式都是空值,最终将返回一个空值。对于空值可以指定返回的默认值。

CONCAT

CONCAT(str1,str2,...)返回拼接参数的新字符串

string || string

字符串连接操作

md5(string)

对字符串md5加密

to_char

将日期、整数、浮点数等格式化为字符串

FunctionReturn TypeDescriptionExample
to_char(timestamptext)textconvert time stamp to stringto_char(current_timestamp, "HH12:MI:SS")
to_char(intervaltext)textconvert interval to stringto_char(interval "15h 2m 12s", "HH24:MI:SS")
to_char(inttext)textconvert integer to stringto_char(125, "999")
to_char(double precisiontext)textconvert real/double precision to stringto_char(125.8::real, "999D9")
to_char(numerictext)textconvert numeric to stringto_char(-125.8, "999D99S")
to_date(texttext)dateconvert string to dateto_date("05 Dec 2000", "DD Mon YYYY")
to_number(texttext)numericconvert string to numericto_number("12,454.8-", "99G999D9S")
to_timestamp(texttext)timestamp with time zoneconvert string to time stampto_timestamp("05 Dec 2000", "DD Mon YYYY")



阅读更多
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像