這篇文章主要介紹Oracle如何判斷表、列、主鍵是否存在,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
專注于為中小企業(yè)提供成都網(wǎng)站制作、網(wǎng)站設(shè)計、外貿(mào)網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)卡若免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了近1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。在編寫程序時,數(shù)據(jù)庫結(jié)構(gòu)會經(jīng)常變化,所以經(jīng)常需要編寫一些數(shù)據(jù)庫腳本,編寫完成后需發(fā)往現(xiàn)場執(zhí)行,如果已經(jīng)存在或者重復(fù)執(zhí)行,有些腳本會報錯,所以需要判斷其是否存在,現(xiàn)在我就把經(jīng)常用到的一些判斷方法和大家分享下:
一。判斷Oracle表是否存在的方法
declare tableExistedCount number; --聲明變量存儲要查詢的表是否存在 begin select count(1) into tableExistedCount from user_tables t where t.table_name = upper('Test'); --從系統(tǒng)表中查詢當(dāng)表是否存在 if tableExistedCount = 0 then --如果不存在,使用快速執(zhí)行語句創(chuàng)建新表 execute immediate 'create table Test --創(chuàng)建測試表 (ID number not null,Name = varchar2(20) not null)'; end if; end;
二。判斷Oracle表中的列是否存在的方法
declare columnExistedCount number; --聲明變量存儲要查詢的表中的列是否存在 begin --從系統(tǒng)表中查詢表中的列是否存在 select count(1) into columnExistedCount from user_tab_columns t where t.table_name = upper('Test') and t.column_name = upper('Age'); --如果不存在,使用快速執(zhí)行語句添加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 --從系統(tǒng)表中查詢表是否存在主鍵(因一個表只可能有一個主鍵,所以只需判斷約束類型即可) select count(1) into primaryKeyExistedCount from user_constraints t where t.table_name = upper('Test') and t.constraint_type = 'P'; --如果不存在,使用快速執(zhí)行語句添加主鍵約束 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 --從系統(tǒng)表中查詢表是否存在主鍵(因一個表只可能有一個主鍵,所以只需判斷約束類型即可) select count(1) into foreignKeyExistedCount from user_constraints t where t.table_name = upper('Test') and t.constraint_type = 'R' and t.constraint_name = '外鍵約束名稱'; --如果不存在,使用快速執(zhí)行語句添加主鍵約束 if foreignKeyExistedCount = 0 then execute immediate 'alter table Test add constraint 外鍵約束名稱 foreign key references 外鍵引用表(列)'; end if; end;
以上是“Oracle如何判斷表、列、主鍵是否存在”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
分享文章:Oracle如何判斷表、列、主鍵是否存在-創(chuàng)新互聯(lián)
鏈接地址:http://jinyejixie.com/article28/dijijp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護、自適應(yīng)網(wǎng)站、服務(wù)器托管、軟件開發(fā)、手機網(wǎng)站建設(shè)、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容