Introduction
Deleting database records is a very common requirement. When the data loses its value, we will delete it, but if it is not done properly, it will often be deleted. Some valuable data are accidentally deleted, resulting in the loss of important data. Only by using reasonable deletion methods can we make better use of data resources. Here are some commonly used deletion methods.
Deletion method
Physical deletion
Physical deletion is to delete one or more records directly from the database and erase the data from the disk. You can use DELETE FROM
SQL statement is implemented. The consequence of this method is that the record is permanently deleted and cannot be retrieved. It is generally suitable for small projects or projects with low data importance, and can improve database resource utilization. The physical deletion method is the simplest and most basic data deletion method. I won’t introduce it here. Let’s mainly look at the logical deletion method.
Logical deletion
The so-called logical deletion is to achieve the effect that the record has been deleted, but in fact the data still exists in the database, but this part of the data is hidden from the user. Some large-scale applications with high data correlation and high data importance often use this deletion method. It can implement practical functions such as the recycle bin, deletion recovery, and viewing historical versions. It has different application scenarios according to business needs.
Application Scenario
For example, in some mailbox applications, when you delete an email, the email will not be deleted directly, but the email will be moved to the recycle bin. You can Recovery, complete deletion and other operations of emails can effectively prevent accidental deletion and other situations.
For another example, blog management platforms generally provide functions such as viewing modification history and comparing historical versions. We can easily view the modification history of articles and restore to a previous version.
Implementation ideas
Mark deletion
The logical deletion function can be easily implemented by deleting the mark. By adding a delete mark field in the table, the normal recorded This field is set to 0, and the field of deleted records is set to 1. When querying, add a where
condition to filter and delete records marked with 0, so that the logical deletion function can be realized. At this time, the deletion business only needs You need to modify the record's deletion mark field to 1.
zipper
The zipper method comes from the data warehouse and is defined for the way tables store data in data warehouse design. The so-called zipper is to record history and record a thing from the beginning to the current state. information on all changes. The zipper algorithm is one of the most typical algorithms in the field of data warehouse.
The difference between this table structure and an ordinary table is that there are two more fields (START_DATE
&END_DATE
) indicating the effective time of the record, respectively adding time and record to the record Maximum validity time.
-
The data table adopts the joint primary key method, using
id
andSTART_DATE
to uniquely represent a certain record, such as:CREATE TABLE `table_name` ( `id` INT NOT NULL AUTO_INCREMENT, `start_date` datetime NOT NULL, `end_date` datetime NOT NULL, ...,primary key(`id`,`start_date`) )ENGINE=MYISAM DEFAULT CHARSET=utf8;
-
When adding a record,
START_DATE
can be set to the current time,END_DATE
can be set to null or a time in the future to represent infinity, such as:insert into table_name(start_date,end_date,...) values(当前时间,一百年后,...);
-
When querying data, you only need to filter the date to get the currently valid records, such as
select * from table_name where id=记录ID and start_date<=当前时间 and end_date>当前时间;
-
The way to modify records is different from the traditional way. The modification operation is not to directly modify a record in the database, but to modify the original valid record
END_DATE
is set to the current time, and then a complete and modified record is added, such as:update table_name set end_date=当前时间 where id=原记录ID and end_date=一百年后;insert into table_name(id,start_date,end_date,...) values(原记录ID,当前时间,一百年后,...);
-
The deletion operation is very easy Simple, you don’t really remove the record from the data table, you just need to set the
END_DATE
of the record to the current time, such as:update table_name set end_date=当前时间 where id=删除记录ID;
In this way, the changes in the data can be completely recorded. Use the following query statement to obtain the complete version list of a record and view the content of a specific version:
" sql
-- Get version listselect start_date from table_name where id=记录ID order by start_date;
-- View specific version content
select * from table_name where id=记录ID and start_date=版本日期;
写在最后
不同的业务需要根据其应用场景来选择合适的数据删除方式,一般的应用可以采用物理删除的方式,简单粗暴地将数据擦除,这样可以有效提高数据库地利用率,如果历史数据一点价值都没有或者价值不高,那还留着干什么,这时如果采用逻辑删除地方式反而加重了数据库的负担,浪费了大量宝贵的资源。但是有些项目如金融、交通、能源等领域的历史数据,往往具有很高的利用价值,通过对这些数据进行分析总结,可以更好的了解该领域的发展情况和健康程度,以及对未来的发展规划起到一定指导作用,这时就要采用逻辑删除的方式,虽然数据管理平台为了便于管理,删除了过期的数据,但数据分析系统仍能从数据库中获取到历史数据,通过抽取转换加载的过程,将历史数据转化为高价值的内容,这是目前信息技术发展的主要趋势。
The above is the detailed content of What are the ways to delete database records?. For more information, please follow other related articles on the PHP Chinese website!

The steps to create and manage user accounts in MySQL are as follows: 1. Create a user: Use CREATEUSER'newuser'@'localhost'IDENTIFIEDBY'password'; 2. Assign permissions: Use GRANTSELECT, INSERT, UPDATEONmydatabase.TO'newuser'@'localhost'; 3. Fix permission error: Use REVOKEALLPRIVILEGESONmydatabase.FROM'newuser'@'localhost'; then reassign permissions; 4. Optimization permissions: Use SHOWGRA

MySQL is suitable for rapid development and small and medium-sized applications, while Oracle is suitable for large enterprises and high availability needs. 1) MySQL is open source and easy to use, suitable for web applications and small and medium-sized enterprises. 2) Oracle is powerful and suitable for large enterprises and government agencies. 3) MySQL supports a variety of storage engines, and Oracle provides rich enterprise-level functions.

The disadvantages of MySQL compared to other relational databases include: 1. Performance issues: You may encounter bottlenecks when processing large-scale data, and PostgreSQL performs better in complex queries and big data processing. 2. Scalability: The horizontal scaling ability is not as good as Google Spanner and Amazon Aurora. 3. Functional limitations: Not as good as PostgreSQL and Oracle in advanced functions, some functions require more custom code and maintenance.

MySQL supports four JOIN types: INNERJOIN, LEFTJOIN, RIGHTJOIN and FULLOUTERJOIN. 1.INNERJOIN is used to match rows in two tables and return results that meet the criteria. 2.LEFTJOIN returns all rows in the left table, even if the right table does not match. 3. RIGHTJOIN is opposite to LEFTJOIN and returns all rows in the right table. 4.FULLOUTERJOIN returns all rows in the two tables that meet or do not meet the conditions.

MySQL's performance under high load has its advantages and disadvantages compared with other RDBMSs. 1) MySQL performs well under high loads through the InnoDB engine and optimization strategies such as indexing, query cache and partition tables. 2) PostgreSQL provides efficient concurrent read and write through the MVCC mechanism, while Oracle and Microsoft SQLServer improve performance through their respective optimization strategies. With reasonable configuration and optimization, MySQL can perform well in high load environments.

InnoDBBufferPool reduces disk I/O by caching data and indexing pages, improving database performance. Its working principle includes: 1. Data reading: Read data from BufferPool; 2. Data writing: After modifying the data, write to BufferPool and refresh it to disk regularly; 3. Cache management: Use the LRU algorithm to manage cache pages; 4. Reading mechanism: Load adjacent data pages in advance. By sizing the BufferPool and using multiple instances, database performance can be optimized.

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

MySQL is worth learning because it is a powerful open source database management system suitable for data storage, management and analysis. 1) MySQL is a relational database that uses SQL to operate data and is suitable for structured data management. 2) The SQL language is the key to interacting with MySQL and supports CRUD operations. 3) The working principle of MySQL includes client/server architecture, storage engine and query optimizer. 4) Basic usage includes creating databases and tables, and advanced usage involves joining tables using JOIN. 5) Common errors include syntax errors and permission issues, and debugging skills include checking syntax and using EXPLAIN commands. 6) Performance optimization involves the use of indexes, optimization of SQL statements and regular maintenance of databases.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.