Preface Some people have asked me some MySQL notes these days, so I have to write a blog post. 1. When creating a table, add table name notes and field notes CREATE TABLE `healerjean_comment` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL COMMENT 'Name Comment', `email` varchar(64) NOT NULL, `message` text, PRIMARY KEY (`id`), KEY `index_name` (`name`) ) COMMENT = 'Table name comments'; 2. After the table is created, add table name notes and field notes ALTER TABLE healerjean_comment COMMENT='Test index table'; ALTER table healerjean_comment MODIFY name VARCHAR(32) NOT NULL COMMENT 'Name comment' 3. View notes show create table healerjean; show full columns from healerjean; This is the end of this article about how to add remark information to MySQL. For more information about how to add remark information to 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:
|
<<: Detailed tutorial on installing pxc cluster with docker
>>: HTML tags: sub tag and sup tag
Data display has always been a demand that all wa...
When we want to use a new CSS feature, we always ...
I reinstalled the computer and installed the late...
This article shares the specific code of Vue to i...
Preface This is an investigation caused by the ex...
MySQL Advanced SQL Statements use kgc; create tab...
Table of contents What is maintainable code? Code...
Building an image is a very important process in ...
Preface Linux does not have a prominent Recycle B...
First look at the effect: Preface: I came up with...
Table of contents Avoid using the spread operator...
Mac latest version of MySQL 8.0.22 password recov...
MySql is a data source we use frequently. It is v...
List of HTML tags mark type Name or meaning effec...
This article shares the installation and configur...