Regarding some MySQL specifications, some companies have a requirement in their table creation specifications that all fields must be non-empty, which means that a default value is stored when there is no value. In fact, it should be said that all fields are non-empty absolutely. It should be said that they are as non-empty as possible. In some cases, it is impossible to give a default value. 1. Storage-based considerations The analysis of storage here requires a clear understanding of the storage format of MySQL data rows. Here, we can directly borrow some conclusions from this article, which provides a very clear analysis (in fact, it also refers to "MySQL Technical Content Innodb Storage Engine"). 1. For variable-length fields, when the related field value is NULL, the related field will not occupy storage space. NULL values are not stored and do not take up space, but require a flag bit (one per row). In view of the two cases of null value and non-empty (not null default ''), if the content stored in a field is empty, that is, there is nothing, the former is stored as null and the latter is stored as an empty string ''. The storage space size of the field content itself is the same. Test demo Directly create a table with the same structure, but one table field is not null and the other table field is null. Then use this stored procedure to write data to the two tables at the same time with a ratio of 1:10 between null values and non-null values. That is, 6 million rows of data are written with one row of data field being null for every 10 rows of data. CREATE TABLE a ( id INT AUTO_INCREMENT, c2 VARCHAR(50) NOT NULL DEFAULT '', c3 VARCHAR(50) NOT NULL DEFAULT '', PRIMARY KEY (id) ); CREATE TABLE b ( id INT AUTO_INCREMENT, c2 VARCHAR(50), c3 VARCHAR(50), PRIMARY KEY (id) ); CREATE DEFINER=`root`@`%` PROCEDURE `create_test_data`( IN `loop_cnt` INT ) LANGUAGE SQL NOT DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER COMMENT '' BEGIN DECLARE v2 , v3 VARCHAR(36); START TRANSACTION; while loop_cnt>0 do SET v2 = UUID(); SET v3 = UUID(); if (loop_cnt MOD 10) = 0 then INSERT INTO a (c2,c3) VALUES(DEFAULT,DEFAULT); INSERT INTO b (c2,c3) VALUES(DEFAULT,DEFAULT); else INSERT INTO a (c2,c3) VALUES (v2,v3); INSERT INTO b (c2,c3) VALUES (v2,v3); END if ; SET loop_cnt=loop_cnt-1; END while; COMMIT; Tables a and b produce exactly the same data. Check the storage space occupied and query the storage information of the two tables from information_schema.TABLES 1. The difference of one byte is reflected in avg_row_length. Because all fields in table a are not null, each row saves one byte of storage compared to table b. In terms of storage space, if you tell me that you care about 1GB of storage space for a 1T database, any data/index fragmentation space, a little reserved space, junk file space, useless index space... are far greater than the extra difference brought by nullability. 2. Efficiency of adding, deleting, checking and modifying Compare the read and write operations by continuously reading and writing data within a range to compare the reading conditions of tables a and b. The difference between adding, deleting, checking and modifying is similar to the difference in storage space, or even smaller, because a single line differs by 1 byte, and a 5MB difference can only be seen when zoomed in to 600W+. For adding, deleting, checking and modifying, no obvious difference was found after various tests. #!/usr/bin/env python3 import pymysql import time mysql_conn_conf = {'host': '127.0.0.1', 'port': 3306, 'user': 'root', 'password': '******', 'db': 'db01'} def mysql_read(table_name): conn = pymysql.connect(host=mysql_conn_conf['host'], port=mysql_conn_conf['port'], database=mysql_conn_conf['db'], user=mysql_conn_conf['user'], password = mysql_conn_conf['password']) cursor = conn.cursor() try: cursor.execute(''' select id,c2,c3 from {0} where id>3888888 and id<3889999;'''.format(table_name)) row = cursor.fetchall() except pymysql.Error as e: print("mysql execute error:", e) cursor.close() conn.close() def mysql_write(loop,table_name): conn = pymysql.connect(host=mysql_conn_conf['host'], port=mysql_conn_conf['port'], database=mysql_conn_conf['db'], user=mysql_conn_conf['user'], password = mysql_conn_conf['password']) cursor = conn.cursor() try: if loop%10 == 0: cursor.execute(''' insert into {0}} (c2,c3) values(DEFAULT,DEFAULT)'''.format(table_name)) else: cursor.execute(''' insert into {1}} (c2,c3) values(uuid(),uuid())'''.format(table_name)) except pymysql.Error as e: print("mysql execute error:", e) cursor.close() conn.commit() conn.close() if __name__ == '__main__': time_start = time.time() loop=10 while loop>0: mysql_write(loop) loop = loop - 1 time_end = time.time() time_c = time_end - time_start print('time cost', time_c, 's') 3. Semantic analysis and logical considerations on related fields There are too many differences of opinion on this point, and it is also the most likely to cause gossip or controversy. 1. For character types, NULL means non-existence, and '' means empty. Non-existence and empty are not the same thing. I don't agree that we must use NOT NULL and give a default value. My personal opinion is very clear. Unless there is a special requirement that a field must not have a NULL value, under normal circumstances, the NULL is NULL. I remembered an interesting thing about default values. When I was watching a video on Bilibili, a certain uploader mentioned that because Bilibili set the registered users as male by default and the date of birth as a certain specified date, the uploader obtained some incomprehensible data after analyzing the user's clicks. My personal knowledge is limited, but the data is honest. I really want to know what other positive effects "all fields are not null" will bring, and how to measure this positive factor. Also, have you really done it? Can you prohibit the fields in all the database tables under the entire instance from being nullable? This is the end of this article about the detailed usage of null and not null when creating tables in MySQL. For more relevant content about null and not null when creating tables in MySQL, 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:
|
<<: JavaScript drag time drag case detailed explanation
>>: Script to quickly list all host names (computer names) in the LAN under Linux
Format Encoding 1. Please set the page width with...
MySQL is a relational database management system....
Table of contents Preface How to use Summarize Pr...
The react version when writing this article is 16...
As the domestic network environment continues to ...
Table of contents getApp() Define variables at th...
This article example shares the specific code of ...
1. Execute the select statement first to generate...
Table of contents What is VUE Core plugins in Vue...
First, create a tomcat folder. To facilitate the ...
Copy code The code is as follows: <object clas...
Preface The so-called fuzzy query is to provide q...
MySQL is now the database used by most companies ...
Table of contents Preface: Detailed introduction:...
Today, when I was on the road, a colleague sent m...