mysql如何能有效防止刪庫跑路

大傢肯定聽說過,有些開發者由於個人失誤,在delete或者update語句的時候沒有添加where語句,導致整個表數據錯亂。

mysql安全模式:mysql發現delete、update語句沒有添加where或者limit條件時會報錯。整個sql將無法執行,有效防止瞭誤刪表的情況。

安全模式設置

在mysql中通過如下命令查看狀態:

 show variables like 'sql_safe_updates';

在這裡插入圖片描述

默認是OFF狀態,將狀態設置為ON即可:

  • set sql_safe_updates=1; //打開
  • set sql_safe_updates=0; //關閉

設置為ON之後

  • update語句:where條件中列(column)沒有索引可用且無limit限制時會拒絕更新。where條件為常量且無limit限制時會拒絕更新。
  • delete語句: ①where條件為常量,②或where條件為空,③或where條件中 列(column)沒有索引可用且無limit限制時拒絕刪除。

測試

打開安全模式進行測試

1.無where的update和delete

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

2、非索引鍵的delete

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

3.索引鍵的delete

delete from t_user where group_id='123'

delete from  t_user where group_id='123'
> Affected rows: 0
> 時間: 0s

總結

如果設置瞭sql_safe_updates=1,那麼update語句必須滿足如下條件之一才能執行成功

  • 使用where子句,並且where子句中列必須為prefix索引列
  • 使用limit
  • 同時使用where子句和limit(此時where子句中列可以不是索引列)

delete語句必須滿足如下條件之一才能執行成功

  • 使用where子句,並且where子句中列必須為prefix索引列
  • 同時使用where子句和limit(此時where子句中列可以不是索引列)一才能執行成功。

到此這篇關於mysql如何能有效防止刪庫跑路的文章就介紹到這瞭,更多相關mysql 防止刪庫內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: