Implementation of adding remark information to mysql

Implementation of adding remark information to mysql

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; 

WX20180727-161536

show full columns from healerjean; 

WX20180727-161454

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:
  • Return all table names, column names, data type notes of a database in Mysql

<<:  Detailed tutorial on installing pxc cluster with docker

>>:  HTML tags: sub tag and sup tag

Recommend

A more elegant error handling method in JavaScript async await

Table of contents background Why error handling? ...

Use of MySQL triggers

Triggers can cause other SQL code to run before o...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

Standard summary for analyzing the performance of a SQL statement

This article will introduce how to use explain to...

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

Two ways to enable firewall in Linux service

There are two ways: 1. Service method Check the f...

MySQL uses custom functions to recursively query parent ID or child ID

background: In MySQL, if there is a limited level...

When to use Map instead of plain JS objects

Table of contents 1. Map accepts any type of key ...

CentOS 8 custom directory installation nginx (tutorial details)

1. Install tools and libraries # PCRE is a Perl l...

JavaScript to achieve skin effect (change background)

This article shares the specific code of JavaScri...

Detailed installation tutorial of mysql 5.7 under CentOS 6 and 7

You always need data for development. As a server...

A brief discussion on what situations in MySQL will cause index failure

Here are some tips from training institutions and...

Practical example of Vue virtual list

Table of contents Preface design accomplish summa...

JavaScript Basics: Scope

Table of contents Scope Global Scope Function Sco...