我试图在表格字段中创建一个函数,在表格字段中搜索字符串,然后返回新的用户表。基本上,在一张表格中,我有一个
create table fooSearchTable (
id integer, -- PG: serial
name LongName unique not null,
queryDef LongString not null,
primary key (id)
);
此处 queryDef
是一个字符串, 挂着另一个要执行的查询。 例如, 一行可能是
1 | resultName | select * from users where users.id = 4
赋予我此功能格式, 以启动此函数
create or replace function searchUsers(_searchName text) returns table (userID integer) as $$
begin
end;
$$ language plpgsql stable;
我需要运行一个 SQL 查询, 以查找 匹配的行
select queryDef from fooSearchTable f
where f.name = _searchName;
这将返回字符串, 但我不知道如何在函数中执行此字符串, 这样我就可以获得一个用户代号表。 任何帮助都会受到欢迎 。