1. 建表
postgres=# create table tb1(id integer,name character varying);
CREATE TABLE
postgres=#
postgres=# insert into tb1 select generate_series(1,5),'aa';
INSERT 0 5
2. 返回單字段的多行(returns setof datatype)
不指定out參數(shù),使用return next xx:
create or replace function func01()returns setof character varying as $$
declare
n character varying;
begin
for i in 1..5 loop
select name into n from tb1 where id=i;
return next n;
end loop;
end
$$ language plpgsql;
指定out參數(shù),使用return next:
create or replace function func02(out character varying)returns setof character varying as $$
begin
for i in 1..5 loop
select name into $1from tb1 where id=i;
return next;
end loop;
end
$$ language plpgsql;
使用return query:
create or replace function func03()returns setof character varying as $$
begin
for i in 1..5 loop
return query(select name from tb1 where id=i);
end loop;
end
$$language plpgsql;
3. 返回多列的多行(returns setog record)
不指定out參數(shù),使用return next xx:
create or replace function func04()RETURNS SETOF RECORD as $$
declare
r record;
begin
for i in 1..5 loop
select * into r from tb1 where id=i;
return next r;
end loop;
end;
$$language plpgsql;
在使用func04的時(shí)候注意,碰到問題列下:
問題一:
postgres=# select func04();
ERROR: set-valued function called in context that cannot accept a set
CONTEXT: PL/pgSQL function func04() line 7 at RETURN NEXT
解決:
If you call your set-returning function the wrong way (IOW the way you might normally call a function), you will get this error message: Set-valued function called in context that cannot accept a set. Incorrect: select sr_func(arg1, arg2, …); Correct: select * from sr_func(arg1, arg2, …);
問題二:
postgres=# select * from func04();
ERROR: a column definition list is required for functions returning "record"
LINE 1: select * from func04();
解決:
postgres=# select * from func04() as t(id integer,name character varying);
id | name
----+------
1 | aa
2 | aa
3 | aa
4 | aa
5 | aa
(5 rows)
這個(gè)問題在func04如果指定out參數(shù)就不會(huì)有問題,如下func05所示:
指定out參數(shù),使用return next:
create or replace function func05(out out_id integer,out out_name character varying)returns setof record as $$
declare
r record;
begin
for i in 1..5 loop
select * into r from tb1 where id=i;
out_id:=r.id;
out_name:=r.name;
return next;
end loop;
end;
$$language plpgsql;
postgres=# select * from func05();
id | name
----+------
1 | aa
2 | aa
3 | aa
4 | aa
5 | aa
(5 rows)
使用return query:
create or replace function func06()returns setof record as $$
begin
for i in 1..5 loop
return query(select id,name from tb1 where id=i);
end loop;
end;
$$language plpgsql;
postgres=# select * from func06() as t(id integer,name character varying);
id | name
----+------
1 | aa
2 | aa
3 | aa
4 | aa
5 | aa
(5 rows)
補(bǔ)充:Postgresql - plpgsql - 從Function中查詢并返回多行結(jié)果
通過plpgsql查詢表,并返回多行的結(jié)果。
關(guān)于創(chuàng)建實(shí)驗(yàn)表插入數(shù)據(jù)這里就不說啦
返回查詢結(jié)果
mytest=# create or replace function test_0830_5() returns setof test
mytest-# as $$
mytest$# DECLARE
mytest$# r test%rowtype; -- 將
mytest$# BEGIN
mytest$# FOR r IN
mytest$# SELECT * FROM test WHERE id > 0
mytest$# LOOP
mytest$# RETURN NEXT r;
mytest$# END LOOP;
mytest$# RETURN;
mytest$# END
mytest$# $$ language plpgsql;
CREATE FUNCTION
mytest=# select test_0830_5(1);
test_0830_5
------------------------------------------
(2,abcabc,"2018-08-30 09:26:14.392187")
......
(11,abcabc,"2018-08-30 09:26:14.392187")
(10 rows)
mytest=# select * from test_0830_5();
id | col1 | col2
----+--------+----------------------------
2 | abcabc | 2018-08-30 09:26:14.392187
......
11 | abcabc | 2018-08-30 09:26:14.392187
(10 rows)
返回某列
mytest=# CREATE OR REPLACE FUNCTION test_0830_6(date) RETURNS SETOF integer AS $$
mytest$# BEGIN
mytest$# RETURN QUERY SELECT id
mytest$# FROM test
mytest$# WHERE col2 >= $1
mytest$# AND col2 ($1 + 1);
mytest$# IF NOT FOUND THEN
mytest$# RAISE EXCEPTION 'No id at %.', $1;
mytest$# END IF;
mytest$# RETURN;
mytest$# END
mytest$# $$
mytest-# LANGUAGE plpgsql;
CREATE FUNCTION
mytest=# select test_0830_6('2018-08-30');
test_0830_6
-------------
2
......
11
(10 rows)
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- Postgresql創(chuàng)建新增、刪除與修改觸發(fā)器的方法
- PostgreSQL+Pgpool實(shí)現(xiàn)HA主備切換的操作
- PostgreSQL時(shí)間線(timeline)和History File的用法
- 基于postgresql行級(jí)鎖for update測(cè)試
- 查看postgresql數(shù)據(jù)庫用戶系統(tǒng)權(quán)限、對(duì)象權(quán)限的方法
- Postgresql鎖機(jī)制詳解(表鎖和行鎖)
- postgres主備切換之文件觸發(fā)方式詳解