评论

收藏

[NoSQL] PostgreSQL存储过程

数据库 数据库 发布于:2021-07-31 12:27 | 阅读数:506 | 评论:0

编写存储过程
CREATE OR REPLACE FUNCTION totalRecords ()  
RETURNS integer AS $total$  
declare  
  total integer;  
BEGIN  
   SELECT count(*) into total FROM EMPLOYEES;  
   RETURN total;  
END;  
$total$ LANGUAGE plpgsql;
执行:
select totalRecords();

关注下面的标签,发现更多相似文章