1. 程式人生 > >Oracle判斷表、列、主鍵是否存在的方法

Oracle判斷表、列、主鍵是否存在的方法

在編寫程式時,資料庫結構會經常變化,所以經常需要編寫一些資料庫指令碼,編寫完成後需發往現場執行,如果已經存在或者重複執行,有些指令碼會報錯,所以需要判斷其是否存在,現在我就把經常用到的一些判斷方法和大家分享下:

一.判斷Oracle表是否存在的方法

declare tableExistedCount number;   --宣告變數儲存要查詢的表是否存在

begin

     select count(1) into tableExistedCount  from user_tables t where t.table_name = upper('Test'); --從系統表中查詢當表是否存在

     if tableExistedCount  = 0 then --如果不存在,使用快速執行語句建立新表

         execute immediate

         'create table Test --建立測試表

         (ID number not null,Name = varchar2(20) not null)';

     end if;

end;

二.判斷Oracle表中的列是否存在的方法

declare columnExistedCount number;   --宣告變數儲存要查詢的表中的列是否存在
begin 
        --從系統表中查詢表中的列是否存在
        select count(1) into columnExistedCount from user_tab_columns t where t.table_name = upper('Test')  and t.column_name = upper('Age');     
        --如果不存在,使用快速執行語句新增Age列
        if columnExistedCount = 0 then 
           execute immediate
           'alter table Test add age number not null';
        end if;
end;
DECLARE
    num NUMBER;
BEGIN
    SELECT COUNT(1)
    INTO num
    from cols
    where table_name = upper('tableName')
    and column_name = upper('columnName');
    IF num > 0 THEN
        execute immediate 'alter table tableName drop column columnName';
    END IF;
END;

三.判斷Oracle表是否存在主鍵的方法

declare primaryKeyExistedCount number;   --宣告變數儲存要查詢的表中的列是否存在
begin 
        --從系統表中查詢表是否存在主鍵(因一個表只可能有一個主鍵,所以只需判斷約束型別即可)
        select count(1) into primaryKeyExistedCount from user_constraints t where t.table_name = upper('Test') and t.constraint_type = 'P';     
        --如果不存在,使用快速執行語句新增主鍵約束
        if primaryKeyExistedCount  = 0 then 
        execute immediate
        'alter table Test add constraint PK_Test_ID primary key(id)';
        end if;
end;

四.判斷Oracle表是否存在外來鍵的方法

declare foreignKeyExistedCount number;   --宣告變數儲存要查詢的表中的列是否存在
begin 
        --從系統表中查詢表是否存在主鍵(因一個表只可能有一個主鍵,所以只需判斷約束型別即可)
        select count(1) into foreignKeyExistedCount from user_constraints t where t.table_name = upper('Test') and t.constraint_type = 'R' and t.constraint_name = '外來鍵約束名稱';     
        --如果不存在,使用快速執行語句新增主鍵約束
        if foreignKeyExistedCount = 0 then 
           execute immediate
           'alter table Test add constraint 外來鍵約束名稱 foreign key references 外來鍵引用表(列)';
        end if;
end;