Because I have been searching for some better database specifications before, so that when connecting MySQL to query/building tables during development, it can be executed according to the specifications, so as to improve the query speed/execute SQL performance and improve the overall performance of MySQL. Here, some better database design specifications are mainly stored (mainly used).A colleague in the company
The compiled database specifications have been authorized by the boss), and I have added some rules on this basis.
1. Basic Specifications
- Use the innodb storage engine. Use the TokuDB storage engine later.
- Table character set uses UTF8mb4
- All tables and table fields must be noted, and the table notes format is:
Business description of the person, creation time, table
- All tables must add primary keys and self-increment ids. Self-increment columns have no business meaning and need to be added.
- Production mysql database does not allow storage of big data such as pictures and files
- Stress testing is prohibited on online databases
- It is recommended to build a partition table with large data volume
- Forbidden use of foreign keys Allow foreign key dependencies in the logical sense
- If you can use the proxy account link to the database, try to use the proxy account link to facilitate the operation and maintenance of database migration work in the future.
- If only query operations are involved, use an account that only checks permissions to create a link, for example:SupersetInquiry on the report establishment in the bi system
- Generally speaking, the database account used by online services is the one written, because online services generally do not involve changing the field/table definition, and management permissions account is generally only used to develop local connections by yourself.
- When applying/creating a database, you can usually use the master configuration, that is, one library is used as the master library and one library is used as the master library to read it.
- Modify the test library at the ddl level. Scripts need to be submitted to the upgrade document. Execute the scripts together during upgrade. Ensure that the test library and the official library are unified.
2. Naming Specifications
- The table name is recommended to have the business English name, starting with the first letter + "_", for example: data_service business, the table name should all start with d_, and be controlled within 15 characters.
- Table name characters are prohibited from exceeding 32 characters
- MySQL reserved words are prohibited
- Temporary library and table names must be
tmp
prefixed with date as suffix - Backup libraries and tables must
bak
prefixed with date as suffix - The library and table recommendations for operation log types are
log
As the suffix - Normal index naming:
idx_start + field name
(Single-stage fields are named with full field, and double-stage or third-stage uses the first letter of the first and last-stage, for example: create_time index is named: idx_ctime) - Unique index name:
uniq_start + field name
Method reference secondary index naming
3. Data table design specifications
- The auto-increment id must be added unsigned
- The field setting is not null must have a default value
- Use text types less, use varchar as much as possible, and prohibit the use of blob types. If blobs are really unavoidable, please disassemble the table.
- Unsigned is required to store non-negative integers
- FLOAT and DOUBLE are prohibited to store floating point numbers, and use DECIMAL instead.
- Don't use as much as possible
default null
, use null unless necessary, it is recommended to use it insteaddefault 0
ordefault ''
(To avoid the null value query needs to be processed separately when using query), and it is not recommended to use it.default ''
- All business fields such as type and status use the TINYINT type. Varchar is prohibited. If varchar cannot be avoided, the enum type is used.
- Use datetime storage time (after mysql5.6)
- Use numerical type fields well. If the numerical field is not that big, don't use bigint
- It is prohibited to store plain text passwords in the database, encrypt the password and store it
- Use partition tables as much as possible
- Before table design, the word length of the field must be evaluated to avoid unnecessary space waste and performance loss.
- It is recommended to control the number of fields in a single table to within 20. It is recommended to divide the vertical tables more.
- Foreign key constraints are generally not created on the database, but only express a logical concept and are controlled by the program.
- All tables must have create_time and update_time, and add triggers (CURRENT_TIMESTAMP and CURRENT_TIMESTAMP ON UPDATE)
Four. Index specification
- The table must have a primary key (clustered index)
- Do not use UUID MD5 HASH these as primary keys (numerical values are too discrete)
- By default, non-empty unique keys are used as primary keys
- Generally, self-increasing columns are primary keys, and the partition keys of the partition table can be compounded with self-increasing columns.
- The number of single index fields shall not exceed 5
- Prioritize coverage indexes
- Avoid redundancy and duplicate indexing
- Avoid using fields with low cardinality as indexing, such as gender, type, status
- Low-base numeric fields are recommended to establish a composite index based on where predicate conditions.
- The fields after ORDER BY, GROUP BY, DISTINCT, WHERE must be indexed according to the actual situation.
- The default value of the index field cannot be NULL
- If you can use a unique index, you must use a unique index, but the requirement is that the word length cannot exceed 8 bits and non-discrete fields, and the super 8 bits and discrete fields, and use a prefix index.
5. SQL Development Specifications
- Use is prohibited in the code
select *
- Do not use scalar subquery, change external connections as much as possible
- Table association is controlled within 3 tables
- Use primary keys whenever possible in table association fields
- It is prohibited to sub-query for large tables
- The table association sorting field must be in the driver table
- The table-related fields must have an index
- Don't use scalar subquery, change to left join or right join as much as possible
- Not used
in/not in/exists/not exists
Subquery, change to inner join as much as possible - Forbidden to make big tables and big tables
- OR is rewritten to IN () or UNION
- Use union all instead of union
- The pagination needs to be rewritten as follows:
select id,text from test limit 10000,10;
-->select , from (select id from test a limit 10000,10) left join test b on =
- It is not recommended to use like with a prefix of % (index cannot be used)
- Not recommended
where
In the conditionsin (subquery)
, even if in is an index fieldrefer to
6. Table creation example
1_ddl_New demo table.sql
CREATE TABLE `c_demo` (
`id` bigint (11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar (50) NOT NULL default '' COMMENT ' Name ',
`creator` varchar (50) NOT NULL default '' COMMENT ',
`is_deleted` tinyint (2) NOT NULL DEFAULT '0' COMMENT ' Is logically deleted 0. No 1. Yes ',
`create_time` datetime NOT NULL DEFAULT '2020-01-13 00:00:00' COMMENT ' Creation time ', -- This is for compatibility with versions before MySQL 5.6. Versions before 5.6 cannot create two fields with CURRENT_TIMESTAMP triggered at the same time
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' Update time ',
PRIMARY KEY (`id`),
KEY `idx_name_deleted` (`name`,`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='zhangsan-2020.1.3 - Test Case '
refer to
- Questions and answers on Zhihu about "How to deal with some details in database design?"
- Alibaba's Java Development Manual (Songshan Edition).pdf