資料庫系列之資料管理 刪除資料

2022-02-05 02:23:09 字數 595 閱讀 4406

delete  from  《表名》  [where 《更新條件》]

delete

from books where bookcode=

'981267

'

問題:使用delete刪除資料時,不能刪除主鍵值被引用的資料行。

truncate table 《表名》

注意:1、truncate table只刪除表中的資料行,不會刪除表結構及各種約束。

2、truncate table不能刪除具有引用關係的資料表。

truncate

table

authors

--等同於

delete

from authors

delete刪除的資料可以通過日誌檔案進行恢復

truncate table刪除的資料不能進行恢復

delete刪除時,標識列取值保留原使用中最大值

truncate table刪除時,標識列恢復到最初設定的標識種子值

delete刪除資料時是一條記錄一條記錄刪除的

truncate table刪除資料時,是以資料頁的形式刪除的

Oracle資料庫管理之建立和刪除資料庫

一 資料庫管理概述 圖1 圖2圖3 圖4圖5 圖6圖7 圖8圖9 圖10圖11 圖12圖13 14 單擊 完成 按鈕,出現 確認 視窗,如圖14 圖14 15 單擊 另存為html檔案 按鈕,可以將這些詳細資料儲存為html檔案,以供以後檢視。16 單擊 確定 按鈕,出現自動建立資料庫的過程介面,如...

Solar Model資料庫操作之刪除資料

actiondelete id 方法solar sql model delete where 中的引數 where可能有兩種形式,分別是字串型和陣列型的條件語句,你可以選擇你喜歡的形式。注意 actiondelete2 id 要得到solar sql model record類的物件必須呼叫sola...

Oracle資料庫 刪除資料庫

1 單擊 開始 oracle oradb12home1 database configuration assistant 進入刪除步驟的第一步,選擇 刪除資料庫 2 單擊 下一步 按鈕,如圖所示。在資料庫列表中選擇需要刪除的資料,例如test,並輸入使用者名稱和口令。3 單擊 下一步 按鈕,開啟 管...