0

我正在编写一个函数来为给定的表数创建表。在创建特定表之前,我想检查该表是否已经存在:

create or replace function test (numoftables int) returns void as $$
    declare
    i integer;
    begin 
    i:=0;
    while i< numoftables loop
        if not exists (select * from table$i$)  -- check if table exists
        then 
            create table table$i$(
                column1 int,
                column2 int,
                column1 text,
                column2 text,
                column3 text); 
        end if;
    end loop;
end;

$$
language 'plpgsql';

当我运行这段代码时,它给了我一个错误。

ERROR:  relation "table$i$" does not exist
LINE 1: SELECT not exists (select * from table$i$)

谁能告诉我如何更改此代码以正常工作。

4

1 回答 1

1
  • 你不能像这样检查表的存在。使用pg_class系统表检查表是否存在
  • 你必须在你的函数中增加 i ,否则你会陷入无限循环

create or replace function test (numoftables int) returns void as $$
    declare
    i integer;
    begin 
    i:=0;
    while i< numoftables loop
        if not exists (select * from pg_class where relname = 'table' || i::text)
        then
            execute '
            create table table' || i::text || '(
                column1 int,
                column2 int,
                column3 text,
                column4 text,
                column5 text);
            ';
        end if;
        i := i + 1;
    end loop;
end;

$$
language 'plpgsql';

我试过没有太多改变你的逻辑或语法,所以它仍然是你的功能。

sql fiddle demo

于 2013-11-04T07:17:46.967 回答