oracle語句怎麼刪除外來鍵約束,只是刪約束,不是刪表

時間 2021-05-07 19:58:51

1樓:匿名使用者

假如有主表 test_main 與 子表 test_subsql> -- 建立外來鍵(預設選項)

sql> alter table test_sub add constraint main_id_cons foreign key (main_id) references test_main;

table altered.

刪除外來鍵約束

alter table test_sub drop constraint main_id_cons;

2樓:匿名使用者

alter table 表名 drop constraint 外來鍵約束名;

3樓:匿名使用者

alter table table_name drop constraint 外來鍵約束名稱;

oracle語句查詢or和and

firstname thomas or firstname william and lastname carter 會得到 lastname 必須為 carter firstname 為 thomas 或者 william的人 thomas carter william carter firstna...

oracle資料庫查詢語句,oracle 資料庫查詢語句

select sum bal cifno from select from a cross join b group by cifno order by 1 如果select from a cross join b不顯示或者顯示錯誤,那麼可以換為select from a union all sel...

oracle一次刪除多張表,oracle 在sql developer裡批量刪除表

oracle一次刪除多張表的步驟如下 1,登入oem並單擊此處的伺服器以管理表空間,使用者等。2,選擇要刪除的表空間。3,選擇要刪除的表空間,然後單擊此處的 刪除 按鈕。4,選中此框以刪除資料檔案,即從磁碟中刪除資料檔案。5,所謂的資料檔案,就是這個表空間的資料,儲存在本地硬碟中,也稱為物理資料。6...