加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

PostgreSQL新增一列的pl/sql脚本

发布时间:2020-12-13 16:55:00 所属栏目:百科 来源:网络整理
导读:多次运行不会报错 DO language plpgsql $$ BEGIN RAISE INFO '*************** test_add_column.sql begins'' ***************' ; if not exists ( select 1 from information_schema.columns where table_schema = 'public' and table_name = 'qer_simutrad

多次运行不会报错

DO language plpgsql $$ BEGIN RAISE INFO '*************** test_add_column.sql begins'' ***************';
    if not exists (select 1 from information_schema.columns where table_schema = 'public' and table_name = 'qer_simutrade_param' and column_name = 'pool_id') then RAISE INFO '*************** column npool_id not exist,add now... ***************';
        alter table public.qer_simutrade_param add column pool_id varchar;
    end if;
    RAISE INFO '*************** test_add_column.sql completes'' ***************';
    EXCEPTION
      WHEN OTHERS THEN
        RAISE NOTICE '*************** Patch ''test_add_column.sql'' fails : ErrCode (%) (%)',SQLSTATE,SQLERRM;
        RAISE;
END;
$$;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读