I recently came into contact with MySQL. Yesterday I created a new table to store table structure information: create table tablist(TABLE_SCHEMA varchar(40),TABLE_NAME varchar(40),COLUMN_NAME varchar(40),COLUMN_TYPE varchar(40), IS_NULLABLE varchar(10),COLUMN_DEFAULT varchar(40),COLUMN_COMMENT varchar(1000),REMARK varchar(2000)); insert into tablist(TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,COLUMN_TYPE,IS_NULLABLE,COLUMN_DEFAULT,COLUMN_COMMENT) select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,COLUMN_TYPE,IS_NULLABLE,COLUMN_DEFAULT,COLUMN_COMMENT from information_schema.`COLUMNS` where TABLE_SCHEMA='leo'; Then query the tablist table: See which columns have no comments: select * from tablist where COLUMN_COMMENT is null; The result I found was Empty set. However, from the above query results and Navicat, we can see that the null value is displayed as the word 'null' in the result set, while the empty string is displayed as empty. After checking the information, I found that there is a difference between the null value and the empty string in Mysql. It is very strange that after the COLUMN_COMMENT is inserted, the null value turns into an empty string (the reason is unknown). Use NULL columns require additional space in the row to record whether their values are NULL. For MyISAM tables, each NULL column takes one bit extra, rounded up to the nearest byte. In MySQL's myisam engine, null values take up additional storage space (1 bit), while empty strings take up no space at all. At the same time, null values cannot be stored in B-tree indexes, which will cause serious performance problems when the amount of data is large. The query methods of the two are also different: null value query uses is null/is not null query, while empty string can be queried using = or !=. Summarize The above is what I introduced to you about NULL and Empty String in Mysql. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Top 10 Js Image Processing Libraries
>>: How to transfer files between Windows and Linux
The operating environment of this tutorial: Windo...
Solution to Host 'xxxx' is not allowed to...
Preface Any application that can be written in Ja...
React Hooks is a new feature introduced in React ...
Table of contents Preface Dynamic SQL 1. Take a l...
Preface The similarities and differences between ...
Custom tags can be used freely in XML files and HT...
Root directory and index file The root directive ...
After the official release of Activiti7, it has f...
First, download a series of things from the Alipa...
WeChat applet calculator example, for your refere...
Table of contents 1. Definition and Use 1.1 Defin...
This article shares with you a small Demo that ad...
1. Definition of offsetParent: offsetParent is th...
How to install and configure mysql-5.7.5-m15-winx...