4

我正在使用 Postgresql 9.3 并编写了如下函数:

    create or replace function test(building text,floor text) returns void as $$
    Declare
    id integer;
    num integer := 0;
    Begin

    num=num+100

    id :=select to_number(
          (select 
              (select code from buildings where name=building) || floor 
              || (select num::text)),'99999999'
    );

    update table set col1=id;

    End;
    $$
    language plpgsql;

我期望的是我的变量id将被分配一个数字值example: 12502100select to_number(...)

但是我收到以下错误

ERROR:  syntax error at or near ":="
LINE 10: source :=(select code from buildings where name='I3')

如何将查询结果(带有一些字符串操作)分配给变量 id?

我的Select Into id...方法也失败了。

4

1 回答 1

5

您不需要SELECT用于功能评估。

id := to_number((SELECT code FROM buildings WHERE name = building) 
                                                      || floor || num::text,
                '999999999');

其他可能性(通常更好)是在表达式列表(结果字段列表)中使用函数

id := (SELECT to_number(code || floor || num::text, '99999999') 
          FROM buildings WHERE name = building)

SELECT仅在需要查询数据时使用,而不是用于函数或变量评估!

于 2013-10-09T09:05:30.507 回答