English 中文(简体)
Postgresql 执行函数
原标题:Postgresql Execute function

我试图在表格字段中创建一个函数,在表格字段中搜索字符串,然后返回新的用户表。基本上,在一张表格中,我有一个

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;

这将返回字符串, 但我不知道如何在函数中执行此字符串, 这样我就可以获得一个用户代号表。 任何帮助都会受到欢迎 。

最佳回答

类似这样的东西应该有用:

create or replace function searchUsers(_searchName text) 
   returns table (userID integer) 
as $$
  _query varchar;
begin
  select queryDef
     into _query 
  from fooSearchTable f
  where f.name = _searchName;

  return query execute _query;
end
$$ language plpgsql;

(未经测试,所以可能含有语法错误)

请注意 select. > in 要求说明返回一行,否则运行时会出错。您要么需要确保条件达到此目标,要么在选择的语句上应用 limit 条款。

This is explained here:
http://www.postgresql.org/docs/current/static/plpgsql-control-structures.html#AEN54092

问题回答

暂无回答




相关问题
摘录数据

我如何将Excel板的数据输入我的Django应用? I m将PosgreSQL数据库作为数据库。

Postgres dump of only parts of tables for a dev snapshot

On production our database is a few hundred gigabytes in size. For development and testing, we need to create snapshots of this database that are functionally equivalent, but which are only 10 or 20 ...

How to join attributes in sql select statement?

I want to join few attributes in select statement as one for example select id, (name + + surname + + age) as info from users this doesn t work, how to do it? I m using postgreSQL.

What text encoding to use?

I need to setup my PostgreSQL DB s text encoding to handle non-American English characters that you d find showing up in languages such as German, Spanish, and French. What character encoding should ...

SQL LIKE condition to check for integer?

I am using a set of SQL LIKE conditions to go through the alphabet and list all items beginning with the appropriate letter, e.g. to get all books where the title starts with the letter "A": SELECT * ...

热门标签