How to export mysql table structure to excel

How to export mysql table structure to excel

The requirements are as follows

Export the table structure, field comment information, table name, etc. This can be achieved without using third-party tools.

SELECT
 TABLE_NAME table name,
 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
-- developerclub is the database name. You only need to change it to the database you want to export the table structure. table_schema = 'developerclub' 

The effect is as follows

I'm too lazy to change them one by one, the effect has been achieved.

The above is the details of how to export the table structure of MySQL to Excel. For more information about exporting the table structure of MySQL to Excel, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Solution to MySQL error TIMESTAMP column with CURRENT_TIMESTAMP
  • How to solve the problem of entering current root password when installing MYSQL
  • Various types of MySQL indexes
  • How to modify the MySQL character set
  • Troubleshooting of master-slave delay issues when upgrading MySQL 5.6 to 5.7
  • Solution to MySQL Chinese garbled characters problem
  • How to install MySql in CentOS 8 and allow remote connections
  • Analyzing the MySql CURRENT_TIMESTAMP function by example

<<:  There is no make command in Linux (make: *** No target specified and no makefile or make command installation method found)

>>:  How to use Vue3 to achieve a magnifying glass effect example

Recommend

How to use jsx syntax correctly in vue

Table of contents Preface Virtual DOM What is Vir...

Table shows the border code you want to display

Common properties of tables The basic attributes ...

How to implement simple data monitoring with JS

Table of contents Overview first step Step 2 Why ...

How to create WeChat games with CocosCreator

Table of contents 1. Download WeChat developer to...

Learning Vue instructions

Table of contents 1. v-text (v-instruction name =...

Causes and solutions for front-end exception 502 bad gateway

Table of contents 502 bad gateway error formation...

How InnoDB implements serialization isolation level

Serialization implementation InnoDB implements se...

MySQL 8.0.12 Installation and Usage Tutorial

Recorded the installation and use tutorial of MyS...

HTML 5.1 learning: 14 new features and application examples

Preface As we all know, HTML5 belongs to the Worl...

A brief analysis of the usage of USING and HAVING in MySQL

This article uses examples to illustrate the usag...