13 刪除資料

2021-07-24 22:43:54 字數 1118 閱讀 3572

use qqmaster

--把qq號碼為54789625的使用者黑名單中的使用者刪除。

delete from relation where qqid=54789625 and relationstatus=1

--qq號碼為622013019使用者多次在qq中發布違法資訊,造成了很壞的影響,因此管理員決定將其刪除。

----在關係表中刪除使用者622013019的資訊

delete from relation where qqid=622013019 or relationqqid=622013019

-----在基本資訊表中刪除使用者622013019的資訊

delete from baseinfo where qqid=622013019

-----在使用者表中刪除使用者622013019的資訊

delete from qquser where qqid=622013019

--管理員將超過1000天沒有登入過的qq刪除。

----查詢超過1000天沒有登入過的qqid集

select qqid from qquser where datediff(day,lastlogtime,getdate())>=1000

----刪除relation表中的資料

delete from relation

where qqid in(select qqid from qquser where datediff(day,lastlogtime,getdate())>=1000)

or relationqqid in(select qqid from qquser where datediff(day,lastlogtime,getdate())>=1000)

----刪除baseinfo表中的資料

delect from baseinfo where qqid in(select qqid from qquser where datediff(day,lastlogtime,getdate())>=1000)

----刪除qquser表中的資料

delete from qquser where datediff(day,lastlogtime,getdate())>=1000

vector刪除資料

6.以下 有什麼問題?stl易 typedef vector intarray intarray array array.push back 1 array.push back 2 array.push back 2 array.push back 3 刪除array陣列中所有的2 for inta...

刪除資料記錄

根據多個標識列刪除資料記錄 一 首先id列是int標識類型別,然後刪除id值為5,6,8,9,10,11的列,這裡的cast函式不能用convert函式代替,而且轉換的型別必須是varchar,而不能是char,否則就會執行出你不希望的結果,這裡的 5,6,8,9,10,11 可以是你在頁面上獲取的...

別刪除資料

oren eini 又名ayende rahien 建議開發者盡量避免資料庫的軟刪除操作,讀者可能因此認為硬刪除是合理的選擇。作為對ayende文章的回應,udi dahan強烈建議完全避免資料刪除。所謂軟刪除主張在表中增加乙個isdeleted列以保持資料完整。如果某一行設定了isdeleted標...