您好,登錄后才能下訂單哦!
這篇文章主要講解了“mysql有效防止刪庫跑路的方法教程”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“mysql有效防止刪庫跑路的方法教程”吧!
安全模式設(shè)置
測試
1.無where的update和delete
2、非索引鍵的delete
3.索引鍵的delete
總結(jié)
大家肯定聽說過,有些開發(fā)者由于個人失誤,在delete或者update語句的時候沒有添加where語句,導(dǎo)致整個表數(shù)據(jù)錯亂。
mysql安全模式:mysql發(fā)現(xiàn)delete、update語句沒有添加where或者limit條件時會報錯。整個sql將無法執(zhí)行,有效防止了誤刪表的情況。
在mysql中通過如下命令查看狀態(tài):
show variables like 'sql_safe_updates';
默認(rèn)是OFF狀態(tài),將狀態(tài)設(shè)置為ON即可:
set sql_safe_updates=1;
//打開
set sql_safe_updates=0;
//關(guān)閉
設(shè)置為ON之后
update語句:where條件中列(column)沒有索引可用且無limit限制時會拒絕更新。where條件為常量且無limit限制時會拒絕更新。
delete語句: ①where條件為常量,②或where條件為空,③或where條件中 列(column)沒有索引可用且無limit限制時拒絕刪除。
打開安全模式進(jìn)行測試
delete from t_user
delete from t_user > 1175 - You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column > 時間: 0.001s
update t_user set name='123'
update t_user set name='123' > 1175 - You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column > 時間: 0.001s
delete from t_user where name='123'
delete from t_user where name='123' > 1175 - You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column > 時間: 0.007s
如果delete的where條件不是索引鍵,則必須要添加limit才可以。
delete from t_user where name='123' limit 1
delete from t_user where name='123' limit 1 > Affected rows: 0 > 時間: 0.002s
delete from t_user where group_id='123'
delete from t_user where group_id='123' > Affected rows: 0 > 時間: 0s
如果設(shè)置了sql_safe_updates=1
,那么update
語句必須滿足如下條件之一才能執(zhí)行成功
使用where子句,并且where子句中列必須為prefix索引列
使用limit
同時使用where子句和limit(此時where子句中列可以不是索引列)
delete
語句必須滿足如下條件之一才能執(zhí)行成功
使用where子句,并且where子句中列必須為prefix索引列
同時使用where子句和limit(此時where子句中列可以不是索引列)一才能執(zhí)行成功。
感謝各位的閱讀,以上就是“mysql有效防止刪庫跑路的方法教程”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對mysql有效防止刪庫跑路的方法教程這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。