码迷,mamicode.com
首页 > 数据库 > 详细

greenplum数据库python自定义函数

时间:2016-08-10 14:38:34      阅读:2255      评论:0      收藏:0      [点我收藏+]

标签:greenplum 数据库 函数 gp python

greenplum数据库(下面简称gp数据库)支持自定义函数,下面介绍的是python编写的自定义简单函数。聚类函数较复杂,自我感觉不适合在gp数据库中编写。


python自定义函数说明了只要python能对行级数据做的处理,gp都能做。

样例:python对json做处理返回多行。

create or replace function public.json_parse(data text) returns setof text

AS $$

   import json

   try:

       mydata=json.loads(data)

   except:

      return [‘parse error‘]

   returndata=[]

   try:

      for people in mydata[‘a‘]:

    returndata.append(people[‘b‘])

   except:

      return [‘223‘]

   return returndata

$$ LANGUAGE plpythonu;


本文出自 “11821925” 博客,请务必保留此出处http://11831925.blog.51cto.com/11821925/1836434

greenplum数据库python自定义函数

标签:greenplum 数据库 函数 gp python

原文地址:http://11831925.blog.51cto.com/11821925/1836434

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!