溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在PostgreSQL中使用function返回多行的數(shù)據(jù)

發(fā)布時(shí)間:2020-12-30 14:32:08 來源:億速云 閱讀:920 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)怎么在PostgreSQL中使用function返回多行的數(shù)據(jù),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

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)

上述就是小編為大家分享的怎么在PostgreSQL中使用function返回多行的數(shù)據(jù)了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI