Mysql get table comment field operation

Mysql get table comment field operation

I won't say much nonsense, let's just look at the code~

-- View and obtain the field comments in the table:
show full columns from tablename;
-- Or show full fields from tablename;
-- Or, look in the metadata table Select COLUMN_NAME column name, DATA_TYPE field type, COLUMN_COMMENT field comment from INFORMATION_SCHEMA.COLUMNS
Where table_name = 'companies'##table name AND table_schema = 'testhuicard'##database name AND column_name LIKE 'c_name'##field name -- 2-1 How to view table comments:
show create table tablename;
-- 2-2 Get all table information of the entire database (including table name, table comment, table type, etc.):
SELECT table_name, table_type, engine
FROM information_schema.tables
WHERE table_schema = 'db5' //table_schema is the database name ORDER BY table_name DESC;
-- This statement requests a reverse alphabetical listing of all tables in database db5, but only displays three types of information: table name, table type, and table engine.
-- INFORMATION_SCHEMA is the information database that holds information about all other databases maintained by the MySQL server.
SELECT TABLE_COMMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'sh_goods' AND TABLE_SCHEMA = 'sh_shop'; //Get the comments of the sh_goods table in the sh_shop database.
-- 2-3 Get table comments or -- or use:
show table status;
-- Comment is a table comment.
-- Extensions:
-- Modify the table's comments:
alter table test1 comment 'Comments of the modified table';
-- Modify the field's comment:
alter table test1 modify column field_name int comment 'modified field comment';

Supplement: mysql query all field names, field types and comments of a table in a database

When doing background development, we must generate corresponding entity classes, that is, JavaBeans, from the tables in the data. During development, in order to quickly generate entity classes, we can query all field names, field types and comments of a table in the database, and quickly create JavaBeans, which can also prevent spelling errors.

Corresponds one to one with the fields in the database. In Navicat (database visualization tool), you can execute SQL statements

select COLUMN_NAME,DATA_TYPE,COLUMN_COMMENT from information_schema.COLUMNS where table_name = 'table name' and table_schema = 'database name';

The result is similar to:

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • MySQL table and column comments summary
  • Basic operations of MySQL data tables: table structure operations, field operation example analysis
  • MySql creates a table with explanation and annotates the table and fields

<<:  How to use VUE to call Ali Iconfont library online

>>:  HTML table tag tutorial (20): row background color attribute BGCOLOR

Recommend

How to use yum to configure lnmp environment in CentOS7.6 system

1. Installation version details Server: MariaDB S...

How to deploy hbase using docker

Standalone hbase, let’s talk about it first. Inst...

React sample code to implement automatic browser refresh

Table of contents What is front-end routing? How ...

HTML Tutorial: Ordered Lists

<br />Original text: http://andymao.com/andy...

Is it necessary to give alt attribute to img image tag?

Do you add an alt attribute to the img image tag? ...

How to use mixins in Vue

Table of contents Preface How to use Summarize Pr...

Summary of uncommon operators and operators in js

Summary of common operators and operators in java...

HTML Tutorial: Collection of commonly used HTML tags (5)

Related articles: Beginners learn some HTML tags ...

In-depth interpretation of /etc/fstab file in Linux system

Preface [root@localhost ~]# cat /etc/fstab # # /e...

HTML head structure

The following introduces the commonly used head s...

MySQL index failure principle

Table of contents 1. Reasons for index failure 2....

How to build a MySQL high-availability and high-performance cluster

Table of contents What is MySQL NDB Cluster Preli...

Implementation of mysql decimal data type conversion

Recently, I encountered a database with the follo...

Example of Vue transition to achieve like animation effect

Table of contents Results at a Glance Heart Effec...

Comparative Analysis of UI Applications of Image Social Networking Sites (Figure)

In our life, work and study, social networks have ...