美文网首页
postgresql自定义函数语法

postgresql自定义函数语法

作者: jadefan | 来源:发表于2021-01-06 18:55 被阅读0次

最近在写postgres的函数,整理下常用语法备忘

regexp_split_to_table 字符串分割为表格
regexp_split_to_array 字符串分割为数组

定义内部变量

DECLARE
    json text;

执行动态sql,并传入参数

sql1 := 'select * from AA where id=$1';
EXECUTE sql1 using id;

执行动态sql,取出结果

# result 变量提前定义
execute ex_sql into result;

打印变量

RAISE NOTICE 'value %',v1

字符串拼接

name := '111' || '222'

相关文章

网友评论

      本文标题:postgresql自定义函数语法

      本文链接:https://www.haomeiwen.com/subject/brdooktx.html