数据库升级,给某张表增加字段,防止重复升级时sql脚本报错
Posted 19940330a
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库升级,给某张表增加字段,防止重复升级时sql脚本报错相关的知识,希望对你有一定的参考价值。
create or replace function func_add_column() returns int as
$body$
begin
perform * from pg_tables where tablename = ‘表名‘;
if found then
perform * from pg_attribute where attrelid = ‘表名‘::regclass and attname = ‘字段名‘;
if not found then
alter table 表名 add column 字段名 ;
end if;
end if;
return 0 ;
end;
$body$ language plpgsql;
select func_add_column();
以上是关于数据库升级,给某张表增加字段,防止重复升级时sql脚本报错的主要内容,如果未能解决你的问题,请参考以下文章