How can MySQL effectively prevent database deletion and running away?

How can MySQL effectively prevent database deletion and running away?

You must have heard that some developers, due to personal mistakes, did not add a where clause when deleting or updating statements, resulting in confusion in the entire table data.

MySQL safe mode: MySQL will report an error when it finds that the delete or update statement does not have a where or limit condition. The entire SQL statement will not be executed, effectively preventing the accidental deletion of tables.

Safe Mode Settings

Check the status in mysql using the following command:

 show variables like 'sql_safe_updates';

insert image description here

The default state is OFF, just set the state to ON:

  • set sql_safe_updates=1; //Open
  • set sql_safe_updates=0; //Close

After setting to ON

  • Update statement : If there is no index available for the column in the where condition and there is no limit restriction, the update will be rejected. If the where condition is a constant and there is no limit, the update will be rejected.
  • Delete statement: ①The where condition is a constant, ②or the where condition is empty, ③or the column in the where condition has no index available and no limit restriction, the deletion is rejected.

test

Test in safe mode

1. Update and delete without where clause

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
> Time: 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
> Time: 0.001s

2. Delete of non-index keys

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
> Time: 0.007s

If the where condition of delete is not an index key, you must add a limit.

delete from t_user where name='123' limit 1

delete from t_user where name='123' limit 1
> Affected rows: 0
> Time: 0.002s

3. Delete index key

delete from t_user where group_id='123'

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

Summarize

If sql_safe_updates=1 is set, the update statement must meet one of the following conditions to be executed successfully

  • Use the where clause, and the column in the where clause must be the prefix index column
  • Using limit
  • Use the where clause and limit at the same time (the column in the where clause does not need to be an index column)

The delete statement must meet one of the following conditions to be executed successfully

  • Use the where clause, and the column in the where clause must be the prefix index column
  • The execution can be successful only if the where clause and limit (the column in the where clause does not need to be an index column) are used at the same time.

This is the end of this article about how to effectively prevent MySQL from deleting databases. For more information about preventing MySQL from deleting databases, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL commonly used SQL and commands from entry to deleting database and running away
  • In-depth analysis of MySQL from deleting the database to running away_Advanced (I) - Data Integrity
  • Deleting the database and running away? How to use xtraback to back up the MySQL database

<<:  Detailed explanation of the setting of background-image attribute in HTML

>>:  Detailed explanation of tinyMCE usage and experience

Recommend

MySQL 5.7.17 installation and configuration method graphic tutorial (windows)

1. Download the software 1. Go to the MySQL offic...

How to install Chrome browser on CentOS 7

This article introduces how to install Chrome bro...

Summary of MySQL5 green version installation under Windows (recommended)

1 Download MySQL Download address: http://downloa...

WiFi Development | Introduction to WiFi Wireless Technology

Table of contents Introduction to WiFi Wireless T...

MySQL 8.0.11 installation summary tutorial diagram

Installation environment: CAT /etc/os-release Vie...

JavaScript macrotasks and microtasks

Macrotasks and Microtasks JavaScript is a single-...

How to install Android x86 in vmware virtual machine

Sometimes you just want to test an app but don’t ...

How complicated is the priority of CSS styles?

Last night, I was looking at an interview question...

Detailed explanation of MySQL 8.0.18 commands

Open the folder C:\web\mysql-8.0.11 that you just...

VM VirtualBox virtual machine mount shared folder

One environment Install VMware Tools on CentOS 7 ...

How to configure multiple tomcats with Nginx load balancing under Linux

The methods of installing nginx and multiple tomc...

MySQL million-level data paging query optimization solution

When there are tens of thousands of records in th...

In-depth interpretation of /etc/fstab file in Linux system

Preface [root@localhost ~]# cat /etc/fstab # # /e...

The difference and choice between datetime and timestamp in MySQL

Table of contents 1 Difference 1.1 Space Occupanc...