Preface The database has always been my weak point. Combining my own experience (python+sqlalchemy), I will make a record. I prefer to use ORM. I always feel that spelling SQL is a painful thing (mainly because I am not good at SQL). I have also encountered some database pitfalls in previous maintenance projects, such as encoding problems, loss of floating-point precision, etc., to prevent repeating the pitfalls in the future. Chapter 1: Using Help Use the mysql built-in help command
Chapter 2: Selection of table type (storage engine) The two most commonly used engines are: 1. Myisam is the default storage engine of MySQL. When create creates a new table and does not specify the storage engine of the new table, Myisam is used by default. Each MyISAM is stored in three files on disk. The file names are the same as the table names, and the extensions are .frm (to store table definition), .MYD (MYData, to store data), and .MYI (MYIndex, to store indexes). Data files and index files can be placed in different directories to evenly distribute IO and achieve faster speed. 2. The InnoDB storage engine provides transaction security with commit, rollback, and crash recovery capabilities. However, compared with the MyISAM storage engine, InnoDB writes less efficiently and takes up more disk space to retain data and indexes. Common environment: 1. MyISAM: The default MySQL plug-in storage engine, which is one of the most commonly used storage engines in Web, data warehousing and other application environments 2. InnoDB: Used for transaction processing applications, with many features, including ACID transaction support. Chapter 3: Choosing the right data type First, select the appropriate storage engine and determine the appropriate data type based on the specified storage engine.
Some data types to note: 1. char and varchar: The storage and retrieval methods are different, and the maximum length and whether the trailing space is retained are also different. char has a fixed length. If the length is insufficient, it will be padded with spaces. If PAD_CHAR_TO_FULL_LENGTH is not set when getting, the trailing spaces will be removed by default. 2. Text and 3. Floating point number float and fixed point number decimal: Note a few points: 1. Although floating-point numbers can represent a larger data range, they have error problems. 2. For issues that are sensitive to precision, such as currency, fixed-point storage should be used. I encountered some problems in previous projects, and ended up having to solve them by zooming in and out, which was ugly. 3. When programming, if you encounter floating point numbers, pay attention to the error problem and try to avoid floating point comparison (comparing floating point numbers requires the difference to be less than a specific precision). In Python 3.5, you can compare like this: 4. Pay attention to the processing of some special values in floating-point numbers. Chapter 4: Character Sets It is important to choose the right character set at the beginning, otherwise it will be very costly to change it later. Character set is a long-standing problem in Python 2, which confuses many novices. The project I maintained before used the default latin1 character set of msyql, which resulted in the need to manually encode the string into utf8 every time it was written. Recently, I used python3.5+flask to do projects and used utf8 directly, and I never encountered encoding problems again:
Chapter 5: Design and use of indexes All MySQL column types can be indexed, and using indexes on relevant columns is the best way to improve the performance of select operations. Principles of index design: 1. The index column being searched is not necessarily the column to be selected. The most suitable columns for indexing are those that appear in the where clause or are specified in a join clause, rather than those that appear in the select list following the select keyword. 2. Use a unique index. Indexing works well for columns with unique values, but poorly for columns with multiple duplicate values. 3. Use short indexes. If you index a string column, you should specify a prefix length whenever possible. 4. Use the leftmost prefix. When you create an n-column index, you actually create n indexes that MySQL can use. A multicolumn index can function as several indexes because the leftmost set of columns in the index can be used to match rows; such a set of columns becomes a leftmost prefix. 5. Don’t over-index. Indexes waste disk space and reduce write performance. 6. Consider the types of comparisons performed on the columns. Chapter 6: Locking Mechanism and Transaction Control The InnoDB engine provides row-level locks, supports two lock modes: shared locks and exclusive locks, and four different isolation levels. MySQL supports local transactions through statements such as AUTOCOMIT, START TRANSACTIONS, COMMIT, and ROLLBACK. Chapter 7: Security Issues in SQL SQL injection: Utilize the external interface of some databases to insert user data into the actual database operation language (sql), thereby achieving the purpose of invading the database or even the operating system. The main reason is that the program does not strictly filter the data input by the user, resulting in the execution of illegal database query statements. Preventive measures:
Chapter 8: SQL Mode and Related Issues Change the default MySQL execution mode. For example, if an insert or update is incorrect under strict mode, MySQL will give an error and abandon the operation. Chapter 9: Common SQL Skills
Chapter 10: Other issues that require attention Case sensitivity of database and table names: Different platforms and systems have different case sensitivity. The recommendation is to always use lowercase names. Chapter 11: SQL Optimization General steps to optimize SQL: 1. Use show status and application characteristics to understand the execution frequency of various SQL statements and the approximate execution ratio of various SQL statements. For example, the InnoDB parameter Innode_rows_read queries the number of rows returned, Innodb_rows_inserted executes the number of rows inserted by insert, and Innodb_rows_updated executes the number of rows updated. There are also several parameters: Connections attempts to connect to the MySQL server, Uptime server working time, Slow_queries number of slow queries. 2. Locate SQL statements with low execution efficiency. There are two ways: one is to locate statements with low execution efficiency through the slow query log. When started with the --log-slow-queries[=file_name] option, mysqld writes a log file containing all SQL statements whose execution time exceeds long_query_time seconds. The other is to use show processlist to view the current threads in MySQL, including the thread status, whether the table is locked, etc. You can view the SQL execution status in real time and optimize some table locking operations. 3. Analyze the execution plan of inefficient SQL through EXPLAIN: EXPLAIN can tell you when you must index the table to get a faster SELECT that uses the index to find records. The following is an explanation of the results obtained after EXPLAIN is executed:
4. Identify the problem and take corresponding optimization measures. Indexing issues
Two simple and practical optimization methods
Optimization from the client (code side) perspective
Chapter 12: Optimizing Database Objects Optimize table data type: Improve table access efficiency by splitting: The splitting here is mainly for MyISAM type tables.
Denormalization: Normalization design emphasizes independence and minimizes data redundancy. More redundancy means more physical space is occupied and also brings problems to data maintenance and consistency checks. Appropriate redundancy can reduce multi-table access and significantly improve query efficiency. In this case, you can consider improving efficiency through appropriate redundancy. Use redundant statistics tables: Use Choose a more appropriate table type: 1. If the application has serious lock conflicts, please consider whether to deliberately change the storage engine to InnoDB. The row lock mechanism can effectively reduce the occurrence of lock conflicts. 2. If the application has a lot of query operations and does not have strict requirements on transaction integrity, you can consider using Myisam. Chapter 13: Locking Problems Waiting for locks: table_locks_waited and table_locks_immediate status variables to analyze table lock contention on the system. Check Innode_row_lock to analyze row lock contention. Chapter 14: Optimizing MySQL Server View the current parameters of MySQL Server
Important parameters affecting MySQL performance
Chapter 15: I/O Issues Disk seeks are a huge performance bottleneck.
Chapter 16: Application Optimization
Summarize The above is the relevant content about MySQL. I hope that the content of this article can be of some help to everyone in learning or using MySQL. If you have any questions, you can leave a message to communicate. You may also be interested in:
|
<<: How to handle images in Vue forms
>>: Solution to the problem of slow docker pull image speed
When logging in to the stress test, many differen...
This article mainly introduces the solution to th...
There are two common loading icons on the web, on...
question Running gdb in docker, hitting a breakpo...
Simple function: Click the plug-in icon in the up...
Table of contents 1. Conventional ideas for time ...
Introduction to AOP The main function of AOP (Asp...
Table of contents 1. Basic knowledge of indexing ...
As a basic element of a web page, images are one ...
If the table is wide, it may overflow. For exampl...
Anyone who has used Windows Remote Desktop to con...
This article example shares the specific code of ...
Preface I have been busy developing a cold chain ...
Flex layout is also called elastic layout. Any co...
1. Cause: The effect after the subbox is set to f...