Steps to export the fields and related attributes of MySQL tables

Steps to export the fields and related attributes of MySQL tables

Need to export the fields and properties of the table in the database, make a table and save it in Word

First find the library to be imported, enter sql on the query page

SELECT
 COLUMN_NAME column name,
 COLUMN_TYPE data type,
  DATA_TYPE field type,
 CHARACTER_MAXIMUM_LENGTH length,
 IS_NULLABLE Is it empty?
 COLUMN_DEFAULT default value,
 COLUMN_COMMENT Comments FROM
 INFORMATION_SCHEMA.COLUMNS
where
table_schema = 'database name'
AND
table_name = 'table name'

Get the result

Then copy it and you can copy the result

Note that what is copied is the content, without the header and table format. You need to draw a table of the appropriate size in Word and then paste the data into it.

You may also be interested in:
  • Detailed explanation of count without filter conditions in MySQL
  • In-depth explanation of the maximum value of int in MySQL
  • Summary of the differences between Mysql primary key and unique key
  • Examples of optimistic locking and pessimistic locking in MySQL
  • MySQL limit performance analysis and optimization
  • Detailed explanation of how to implement secondary cache with MySQL and Redis
  • Docker creates MySQL explanation
  • PHP date() format MySQL insert datetime method
  • How to solve SQL injection problem with pymysql
  • Detailed analysis of MySQL master-slave delay phenomenon and principle

<<:  Detailed explanation of how to install the system on VMware workstation 14 pro (virtual machine)

>>:  VUE+SpringBoot implements paging function

Recommend

Token verification login in Vue project (front-end part)

This article example shares the specific code of ...

Solutions to VMware workstation virtual machine compatibility issues

How to solve VMware workstation virtual machine c...

Detailed explanation of CSS elastic box flex-grow, flex-shrink, flex-basis

The functions of the three attributes flex-grow, ...

Solve the problem that Docker pulls MySQL image too slowly

After half an hour of trying to pull the MySQL im...

A brief discussion on several specifications of JS front-end modularization

Table of contents Preface The value of front-end ...

Implementation of running springboot project with Docker

Introduction: The configuration of Docker running...

What are the attributes of the JSscript tag

What are the attributes of the JS script tag: cha...

HTML+CSS merge table border sample code

When we add borders to table and td tags, double ...

Docker container custom hosts network access operation

Adding the extra_hosts keyword in docker-compose....

How to use the dig/nslookup command to view DNS resolution steps

dig - DNS lookup utility When a domain name acces...

VMware Workstation 12 Pro Linux installation tutorial

This article records the VMware Workstation 12 Pr...

Detailed explanation of Mysql's method of optimizing order by statement

In this article, we will learn about the optimiza...

Steps to customize icon in Vue

ant-design-vue customizes the use of Ali iconfont...