Oracle-9i
用於列出沒有主鍵的表的腳本 oracle 9i
我正在尋找一個腳本來查找我的數據庫中沒有主鍵的表。
select table_name from user_tables minus select table_name from all_constraints where (constraint_type ='P' ) and owner='dbSID_here'
有一個更簡單的方法:
SELECT table_name FROM user_tables WHERE table_name NOT IN (SELECT table_name FROM user_constraints WHERE constraint_type =‘P’);
從這裡。